1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/tests/lang/bug29566.phpt
Máté Kocsis f44dd16b7a Improve error message of foreach
Closes GH-5240
2020-03-09 11:29:40 +01:00

17 lines
351 B
PHP

--TEST--
Bug #29566 (foreach/string handling strangeness)
--FILE--
<?php
$var="This is a string";
$dummy="";
unset($dummy);
foreach($var['nosuchkey'] as $v) {
}
?>
--EXPECTF--
Warning: Illegal string offset 'nosuchkey' in %sbug29566.php on line %d
Warning: foreach() argument must be of type array|object, string given in %sbug29566.php on line %d