php-src/ext/standard/tests/array/array_walk_variation8.phpt
2008-02-02 02:36:08 +00:00

43 lines
1.1 KiB
PHP

--TEST--
Test array_walk() function : usage variations - buit-in function as callback
--FILE--
<?php
/* Prototype : bool array_walk(array $input, string $funcname [, mixed $userdata])
* Description: Apply a user function to every member of an array
* Source code: ext/standard/array.c
*/
/*
* Passing different buit-in functionns as callback function
* pow function
* min function
* echo language construct
*/
echo "*** Testing array_walk() : built-in function as callback ***\n";
$input = array(2 => 1, 65, 98, 100, 6 => -4);
echo "-- With 'pow' built-in function --\n";
var_dump( array_walk($input, 'pow'));
echo "-- With 'min' built-in function --\n";
var_dump( array_walk($input, "min"));
echo "-- With 'echo' language construct --\n";
var_dump( array_walk($input, "echo"));
echo "Done"
?>
--EXPECTF--
*** Testing array_walk() : built-in function as callback ***
-- With 'pow' built-in function --
bool(true)
-- With 'min' built-in function --
bool(true)
-- With 'echo' language construct --
Warning: array_walk() expects parameter 2 to be a valid callback, function 'echo' not found or invalid function name in %s on line %d
NULL
Done