TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
277 B

--TEST--
Bug #20865 (array_key_exists and NULL key)
--SKIPIF--
<?php die("skip AOT array_key_exists with NULL key differs from PHP"); ?>
--FILE--
<?php
$ta = array(1, 2, 3);
$ta[NULL] = "Null Value";
var_dump(array_key_exists(NULL, $ta));
?>
--EXPECT--
bool(true)