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.
 
 

41 lines
844 B

--TEST--
Test array_unique() function : usage variations - array with reference variables
--SKIPIF--
<?php die("skip AOT does not fully support references"); ?>
--FILE--
<?php
/*
* Testing the functionality of array_unique() by passing
* array having reference variables as values.
*/
echo "*** Testing array_unique() : array with reference variables for \$input argument ***\n";
$value1 = 10;
$value2 = "hello";
$value3 = 0;
$value4 = &$value2;
// input array containing elements as reference variables
$input = array(
0 => 0,
1 => &$value4,
2 => &$value2,
3 => "hello",
4 => &$value3,
5 => $value4
);
var_dump( array_unique($input, SORT_STRING) );
echo "Done";
?>
--EXPECT--
*** Testing array_unique() : array with reference variables for $input argument ***
array(2) {
[0]=>
int(0)
[1]=>
&string(5) "hello"
}
Done