1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/tests/lang/foreachLoop.017.phpt
2014-12-21 13:23:02 +00:00

12 lines
193 B
PHP

--TEST--
Ensure foreach works with arrays with Binary keys.
--FILE--
<?php
$a = array ( "\x90" => 10 );
foreach ($a as $val=>$key) echo $key;
echo "\nDone\n";
?>
--EXPECTF--
10
Done