php-8.0.30-src/tests/lang/bug29566.phpt

17 lines
341 B
PHP

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