php-src/Zend/tests/foreach_undefined.phpt

15 lines
243 B
Plaintext
Raw Normal View History

2005-08-04 14:12:07 +00:00
--TEST--
foreach() & undefined var
--FILE--
<?php
foreach($a as $val);
echo "Done\n";
?>
2018-09-16 17:16:42 +00:00
--EXPECTF--
Warning: Undefined variable $a in %s on line %d
2005-08-04 14:12:07 +00:00
Warning: foreach() argument must be of type array|object, null given in %s on line %d
2005-08-04 14:12:07 +00:00
Done