mirror of
https://github.com/php/php-src.git
synced 2025-01-24 20:53:37 +08:00
11 lines
192 B
PHP
11 lines
192 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
|