mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
11 lines
173 B
PHP
11 lines
173 B
PHP
--TEST--
|
|
Testing each() with an undefined variable
|
|
--FILE--
|
|
<?php
|
|
|
|
each($foo);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Variable passed to each() is not an array or object in %s on line %d
|