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.
12 lines
310 B
12 lines
310 B
--TEST--
|
|
GH-20043 (array_unique assertion failure with RC1 array causing an exception on sort)
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
array_unique([new stdClass, new stdClass], SORT_STRING | SORT_FLAG_CASE);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Object of class stdClass could not be converted to string
|
|
|