mirror of
https://github.com/php/php-src.git
synced 2025-01-10 04:54:47 +08:00
23 lines
448 B
PHP
23 lines
448 B
PHP
--TEST--
|
|
Bug #76446 (zend_variables.c:73: zend_string_destroy: Assertion `!(zval_gc_flags((str)->gc)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.optimization_level=-1
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
function test()
|
|
{
|
|
$openmenu = '';
|
|
$openstr2 = "&openmenu={$openmenu}{$addlang}\"";
|
|
return 0;
|
|
}
|
|
|
|
var_dump(test());
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: addlang in %sbug76446.php on line %d
|
|
int(0)
|