php-src/tests/lang/040.phpt

16 lines
153 B
Plaintext
Raw Normal View History

2005-02-07 15:16:08 +00:00
--TEST--
foreach into array
--FILE--
<?php
$a = array(0,1);
$b[0]=2;
foreach($a as $b[0]) {
echo $b[0]."\n";
}
?>
===DONE===
--EXPECT--
0
1
===DONE===