📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-07-12 04:28:52
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php81-pecl-yaml_2.2.3-1.el8
/
tests
📍 /opt/alt/tests/alt-php81-pecl-yaml_2.2.3-1.el8/tests
🔄 Refresh
✏️
Editing: yaml_parse_file_002.phpt
Read Only
--TEST-- yaml_parse_file - error cases --SKIPIF-- <?php if(!extension_loaded('yaml')) die('skip yaml n/a'); ?> --INI-- yaml.decode_timestamp=1 date.timezone=GMT ; E_ALL - E_DEPRECATED to hide Deprecated: yaml_parse_file(): Passing null to parameter #1... error_reporting=24575 --FILE-- <?php try { // PHP7 emits a Warning here yaml_parse_file(NULL); } catch (ValueError $e) { // PHP8 raises this exception echo "\nWarning: yaml_parse_file(): {$e->getMessage()} in " . __FILE__ . " on line 4\n"; } try { // PHP7 emits a Warning here yaml_parse_file(''); } catch (ValueError $e) { // PHP8 raises this exception echo "\nWarning: yaml_parse_file(): {$e->getMessage()} in " . __FILE__ . " on line 11\n"; } yaml_parse_file('invalid'); try { // PHP7 emits a Warning here yaml_parse_file(); } catch (ArgumentCountError $e) { // PHP8 raises this exception echo "\nWarning: {$e->getMessage()} in " . __FILE__ . " on line 19\n"; } --EXPECTF-- Warning: yaml_parse_file(): %r(Filename|Path)%r cannot be empty in %s on line %d Warning: yaml_parse_file(): %r(Filename|Path)%r cannot be empty in %s on line %d Warning: yaml_parse_file(invalid): %r[Ff]%railed to open stream: No such file or directory in %s on line %d Warning: yaml_parse_file() expects at least 1 %r(argument|parameter)%r, 0 given in %s on line %d
💾 Save Changes
❌ Cancel