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.
58 lines
1.7 KiB
58 lines
1.7 KiB
--TEST--
|
|
Test array_map() function : error conditions
|
|
--SKIPIF--
|
|
<?php
|
|
if (true) die("skip AOT does not support testing invalid argument counts in this way");
|
|
?>
|
|
|
|
--FILE--
|
|
<?php
|
|
function callback1()
|
|
{
|
|
return 1;
|
|
}
|
|
function callback2($p, $q)
|
|
{
|
|
return $p * $q;
|
|
}
|
|
function main()
|
|
{
|
|
echo "*** Testing array_map() : error conditions ***\n";
|
|
// Testing array_map with one less than the expected number of arguments
|
|
echo "\n-- Testing array_map() function with one less than expected no. of arguments --\n";
|
|
try {
|
|
var_dump(array_map('callback1'));
|
|
} catch (Throwable $e) {
|
|
echo "Exception: " . $e->getMessage() . "\n";
|
|
}
|
|
echo "\n-- Testing array_map() function with less no. of arrays than callback function arguments --\n";
|
|
$arr1 = array(1, 2);
|
|
try {
|
|
var_dump(array_map('callback2', $arr1));
|
|
} catch (Throwable $e) {
|
|
echo "Exception: " . $e->getMessage() . "\n";
|
|
}
|
|
echo "\n-- Testing array_map() function with more no. of arrays than callback function arguments --\n";
|
|
$arr2 = array(3, 4);
|
|
$arr3 = array(5, 6);
|
|
var_dump(array_map('callback2', $arr1, $arr2, $arr3));
|
|
echo "Done";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
*** Testing array_map() : error conditions ***
|
|
|
|
-- Testing array_map() function with one less than expected no. of arguments --
|
|
Exception: array_map() expects at least 2 arguments, 1 given
|
|
|
|
-- Testing array_map() function with less no. of arrays than callback function arguments --
|
|
Exception: Too few arguments to function callback2(), 1 passed and exactly 2 expected
|
|
|
|
-- Testing array_map() function with more no. of arrays than callback function arguments --
|
|
array(2) {
|
|
[0]=>
|
|
int(3)
|
|
[1]=>
|
|
int(8)
|
|
}
|
|
Done
|
|
|