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.
 
 

39 lines
1018 B

--TEST--
Test array_walk() function : usage variations - buit-in function as callback
--FILE--
<?php
/*
* 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";
try {
var_dump( array_walk($input, "echo"));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
echo "Done";
?>
--EXPECT--
*** 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 --
array_walk(): Argument #2 ($callback) must be a valid callback, function "echo" not found or invalid function name
Done