mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
13 lines
287 B
PHP
13 lines
287 B
PHP
--TEST--
|
|
Testing each() with an undefined variable
|
|
--FILE--
|
|
<?php
|
|
|
|
each($foo);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: The each() function is deprecated. This message will be suppressed on further calls in %s on line %d
|
|
|
|
Warning: Variable passed to each() is not an array or object in %s on line %d
|