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.
32 lines
844 B
32 lines
844 B
--TEST--
|
|
Test sizeof() function : usage variations - checking for infinite recursion in COUNT_RECURSIVE mode
|
|
--SKIPIF--
|
|
<?php
|
|
if (true) die("skip AOT does not support undefined variables");
|
|
?>
|
|
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing sizeof() : usage variations ***\n";
|
|
|
|
echo "-- Testing sizeof() for infinite recursion with arrays as argument in COUNT_RECURSIVE mode --\n";
|
|
|
|
$array2 = array ( "Hi", "Hello",@$a);
|
|
$array3 = array( 'hi', 'hello');
|
|
$a = array ( 1, @$array1, $array2, $array3);
|
|
$array1 = array( array(1, 2), $a);
|
|
$array4 = array( 100, @$array4);
|
|
|
|
var_dump( sizeof($array1, COUNT_RECURSIVE) );
|
|
echo "\n";
|
|
var_dump( sizeof($array4, COUNT_RECURSIVE) );
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECT--
|
|
*** Testing sizeof() : usage variations ***
|
|
-- Testing sizeof() for infinite recursion with arrays as argument in COUNT_RECURSIVE mode --
|
|
int(13)
|
|
|
|
int(2)
|
|
Done
|
|
|