1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/ext/standard/tests/general_functions/bug40752.phpt
T
2018-10-14 19:45:12 +02:00

38 lines
493 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