1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 04:51:03 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/bug49692.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

21 lines
363 B
PHP

--TEST--
Bug #49692: parse_ini_file() throws errors when key contains '/' (forward slash)
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
--FILE--
<?php
var_dump(parse_ini_file('bug49692.ini', true));
?>
--EXPECT--
array(1) {
["sitemap"]=>
array(2) {
["/home"]=>
string(13) "default:index"
["/info"]=>
string(12) "default:info"
}
}