Browse Source

Fix test :)

experimental/new_ui_api
Yasuo Ohgaki 25 years ago
parent
commit
5f3d9a67f9
  1. 4
      tests/lang/031.phpt

4
tests/lang/031.phpt

@ -9,7 +9,7 @@ Nested while(list() = each()). (Bug #16227)
$insidearray = array("0","1");
while(list(,$outerval) = each($outsidearray)){
//$placeholder = $insidearray;
$placeholder = $insidearray;
while(list(,$innerval) = each($insidearray)){
print "inloop $innerval for $outerval\n";
}
@ -18,6 +18,4 @@ Nested while(list() = each()). (Bug #16227)
--EXPECT--
inloop 0 for key1
inloop 1 for key1
inloop 0 for key2
inloop 1 for key2
Loading…
Cancel
Save