php-src/ext/standard/tests/array/bug77395.phpt
2020-02-03 22:52:20 +01:00

22 lines
549 B
PHP

--TEST--
Bug #77395 (segfault about array_multisort)
--FILE--
<?php
function error_handle($level, $message, $file = '', $line = 0){
$a = [1,2,3];
$b = [3,2,1];
echo $message;
array_multisort($a, SORT_ASC, $b); // if comment this line, no segfault happen
}
set_error_handler('error_handle');
$data = [['aa'=> 'bb',], ['aa'=> 'bb',],];
try {
array_multisort(array_column($data, 'bb'),SORT_DESC, $data); // PHP Warning error
} catch (\ValueError $e) {
echo $e->getMessage() . "\n";
}
?>
--EXPECT--
Array sizes are inconsistent