2014-04-29 03:44:24 +08:00
|
|
|
--TEST--
|
2014-07-06 23:07:41 +08:00
|
|
|
usort() in combination with "Call to a member function method() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
set_error_handler(function($code, $message) {
|
|
|
|
var_dump($code, $message);
|
|
|
|
});
|
|
|
|
|
|
|
|
$comparator= null;
|
|
|
|
$list= [1, 4, 2, 3, -1];
|
|
|
|
usort($list, function($a, $b) use ($comparator) {
|
|
|
|
return $comparator->compare($a, $b);
|
|
|
|
});
|
|
|
|
var_dump($list);
|
|
|
|
echo "Alive\n";
|
|
|
|
?>
|
|
|
|
--EXPECTF--
|
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
int(4096)
|
2014-07-06 23:07:41 +08:00
|
|
|
string(43) "Call to a member function compare() on null"
|
2014-04-29 03:44:24 +08:00
|
|
|
array(5) {
|
|
|
|
[0]=>
|
|
|
|
int(-1)
|
|
|
|
[1]=>
|
|
|
|
int(3)
|
|
|
|
[2]=>
|
|
|
|
int(2)
|
|
|
|
[3]=>
|
|
|
|
int(4)
|
|
|
|
[4]=>
|
|
|
|
int(1)
|
|
|
|
}
|
|
|
|
Alive
|
|
|
|
|