Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Test array_walk_recursive() function : usage variations - buit-in function as cal..

Decoded Output download

*** Testing array_walk_recursive() : built-in function as callback ***
-- With 'pow' built-in function --

Did this file decode correctly?

Original Code

--TEST--
Test array_walk_recursive() 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_recursive() : built-in function as callback ***\n";

$input = array(array(2 => 1, 65), array(98, 100), array(6 => -4));

echo "-- With 'pow' built-in function --\n";
var_dump( array_walk_recursive($input, 'pow'));

echo "-- With 'min' built-in function --\n";
var_dump( array_walk_recursive($input, "min"));

echo "-- With 'echo' language construct --\n";
try {
    var_dump( array_walk_recursive($input, "echo"));
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

echo "Done"
?>
--EXPECT--
*** Testing array_walk_recursive() : 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_recursive(): Argument #2 ($callback) must be a valid callback, function "echo" not found or invalid function name
Done

Function Calls

array_walk_recursive 1

Variables

$input [{'key': 0, 'value': [{'key': 2, 'value': 1}, {'key': 1, 'value': 65}]}, {'key': 1, 'value': [{'key': 0, 'value': 98}, {'key': 1, 'value': 100}]}, {'key': 2, 'value': [{'key': 6, 'value': -4}]}]

Stats

MD5 53fef1ae6811859382b0ceb2a1c485ba
Eval Count 0
Decode Time 92 ms