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.
 
 

17 lines
181 B

--TEST--
Array 001
--FILE--
<?php
$inputs = array(
null => 'v1',
null => 'v2',
);
var_dump($inputs);
?>
--EXPECT--
array(2) {
[0]=>
string(2) "v1"
[1]=>
string(2) "v2"
}