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.
 
 

27 lines
730 B

--TEST--
Test array_map() function : usage variations - non existent 'callback' function
--FILE--
<?php
/*
* Test array_map() by passing non existent function for $callback argument
*/
echo "*** Testing array_map() : non existent 'callback' function ***\n";
// arrays to be passed as arguments
$arr1 = array(1, 2);
$arr2 = array("one", "two");
$arr3 = array(1.1, 2.2);
try {
var_dump( array_map('non_existent', $arr1, $arr2, $arr3) );
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
echo "Done";
?>
--EXPECT--
*** Testing array_map() : non existent 'callback' function ***
array_map(): Argument #1 ($callback) must be a valid callback or null, function "non_existent" not found or invalid function name
Done