1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 22:22:18 +02:00

Added test for bug #34310

This commit is contained in:
foobar
2005-08-31 09:16:50 +00:00
parent 8a3ea48eef
commit 847e50e560

34
Zend/tests/bug34310.phpt Normal file
View File

@@ -0,0 +1,34 @@
--TEST--
Bug #34310 (foreach($arr as $c->d => $x) crashes)
--FILE--
<?php
class C
{
var $d;
}
$c = new C();
$arr = array (1 => 'a', 2 => 'b', 3 => 'c');
// Works fine:
foreach($arr as $x => $c->d)
{
echo "{$x} => {$c->d}\n";
}
// Crashes:
foreach($arr as $c->d => $x)
{
echo "{$c->d} => {$x}\n";
}
?>
--EXPECT--
1 => a
2 => b
3 => c
1 => a
2 => b
3 => c