File: array_map_variation15.phpt

package info (click to toggle)
php7.4 7.4.33-1%2Bdeb11u5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 176,664 kB
  • sloc: ansic: 707,264; php: 18,280; sh: 11,566; cpp: 7,661; javascript: 3,080; pascal: 2,764; yacc: 1,956; xml: 1,722; makefile: 674; perl: 315; awk: 193
file content (30 lines) | stat: -rw-r--r-- 882 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--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);

var_dump( array_map('non_existent', $arr1, $arr2, $arr3) );

echo "Done";
?>
--EXPECTF--
*** Testing array_map() : non existent 'callback' function ***

Warning: array_map() expects parameter 1 to be a valid callback, function 'non_existent' not found or invalid function name in %s on line %d
NULL
Done