mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
36935e42ea
Closes GH-5312
15 lines
243 B
PHP
15 lines
243 B
PHP
--TEST--
|
|
foreach() & undefined var
|
|
--FILE--
|
|
<?php
|
|
|
|
foreach($a as $val);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $a in %s on line %d
|
|
|
|
Warning: foreach() argument must be of type array|object, null given in %s on line %d
|
|
Done
|