1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/standard/tests/array/array_map_variation15.phpt
2021-02-24 19:12:32 +03:00

28 lines
730 B
PHP

--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