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