mirror of
https://github.com/php/php-src.git
synced 2025-01-07 11:34:09 +08:00
16 lines
228 B
Plaintext
16 lines
228 B
Plaintext
|
--TEST--
|
||
|
foreach over null
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
function test() {
|
||
|
foreach (null as $v) {
|
||
|
echo "Foo\n";
|
||
|
}
|
||
|
}
|
||
|
test();
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Warning: foreach() argument must be of type array|object, null given in %s on line %d
|