php-src/Zend/tests/bug69893.phpt

9 lines
160 B
Plaintext
Raw Normal View History

2015-06-20 23:23:58 +08:00
--TEST--
Bug #69893: Strict comparison between integer and empty string keys crashes
--FILE--
<?php
var_dump([0 => 0] === ["" => 0]);
?>
--EXPECT--
bool(false)