mirror of
https://github.com/php/php-src.git
synced 2024-12-11 19:04:38 +08:00
29 lines
469 B
PHP
29 lines
469 B
PHP
--TEST--
|
|
Bug #71300 (Segfault in zend_fetch_string_offset)
|
|
--FILE--
|
|
<?php
|
|
function test1() {
|
|
for ($n = 'a'; $n < 'g'; $n++) {
|
|
$$n = 1;
|
|
}
|
|
$$n = $$n[++$n] = "test";
|
|
return $$n;
|
|
}
|
|
|
|
var_dump(test1());
|
|
|
|
function test2() {
|
|
/* See #71303 for why not using for loop here */
|
|
$n = "a";
|
|
$$n .= $$n[++$n] = "test";
|
|
return $$n;
|
|
}
|
|
|
|
var_dump(test2());
|
|
?>
|
|
--EXPECTF--
|
|
string(4) "test"
|
|
|
|
Notice: Array to string conversion in %sbug71300.php on line %d
|
|
string(9) "Arraytest"
|