mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
9 lines
160 B
PHP
9 lines
160 B
PHP
--TEST--
|
|
Bug #69893: Strict comparison between integer and empty string keys crashes
|
|
--FILE--
|
|
<?php
|
|
var_dump([0 => 0] === ["" => 0]);
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|