1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/lang/040.phpt
2012-10-10 10:27:49 +08:00

16 lines
153 B
PHP

--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===