1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/standard/tests/array/array_map_variation15.phpt
Máté Kocsis 960318ed95 Change argument error message format
Closes GH-5211
2020-02-26 15:00:08 +01:00

33 lines
926 B
PHP

--TEST--
Test array_map() function : usage variations - non existent 'callback' function
--FILE--
<?php
/* Prototype : array array_map ( callback $callback , array $arr1 [, array $... ] )
* Description: Applies the callback to the elements of the given arrays
* Source code: ext/standard/array.c
*/
/*
* 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, function 'non_existent' not found or invalid function name
Done