mirror of
https://github.com/php/php-src.git
synced 2024-12-14 12:26:19 +08:00
e11233dc49
This reverts commit 969047749d
.
21 lines
412 B
PHP
21 lines
412 B
PHP
--TEST--
|
|
Bug #70748 (Segfault in ini_lex () at Zend/zend_ini_scanner.l)
|
|
--FILE--
|
|
<?php
|
|
$ini = '[${ ';
|
|
|
|
$ini_file = __DIR__ . "/bug70748.ini";
|
|
|
|
file_put_contents($ini_file, $ini);
|
|
|
|
var_dump(parse_ini_file($ini_file));
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
unlink(__DIR__ . "/bug70748.ini");
|
|
?>
|
|
--EXPECTF--
|
|
Warning: syntax error, unexpected $end, expecting '}' in %sbug70748.ini on line %d
|
|
in %sbug70748.php on line %d
|
|
bool(false)
|