mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
22 lines
390 B
PHP
22 lines
390 B
PHP
--TEST--
|
|
Bug #67858: Leak when $php_errormsg already set
|
|
--INI--
|
|
track_errors=1
|
|
error_reporting=E_ALL
|
|
--FILE--
|
|
<?php
|
|
|
|
function f() {
|
|
$php_errormsg = [1, 2, 3];
|
|
echo $var;
|
|
var_dump($php_errormsg);
|
|
}
|
|
f();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0
|
|
|
|
Notice: Undefined variable: var in %s on line %d
|
|
string(23) "Undefined variable: var"
|