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/bug40752.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

38 lines
494 B
PHP

--TEST--
Bug #40752 (parse_ini_file() segfaults when a scalar setting is redeclared as an array)
--FILE--
<?php
$file = dirname(__FILE__)."/bug40752.ini";
file_put_contents($file, '
foo = 1;
foo[] = 1;
');
var_dump(parse_ini_file($file));
file_put_contents($file, '
foo[] = 1;
foo = 1;
');
var_dump(parse_ini_file($file));
unlink($file);
echo "Done\n";
?>
--EXPECT--
array(1) {
["foo"]=>
array(1) {
[0]=>
string(1) "1"
}
}
array(1) {
["foo"]=>
string(1) "1"
}
Done