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_keys() function (variation - 2) --FILE-- <?php echo "\n*** Testing ar..
Decoded Output download
*** Testing array_keys() on an array created on the fly ***
Did this file decode correctly?
Original Code
--TEST--
Test array_keys() function (variation - 2)
--FILE--
<?php
echo "\n*** Testing array_keys() on an array created on the fly ***\n";
var_dump(array_keys(array("a" => 1, "b" => 2, "c" => 3)));
var_dump(array_keys(array())); // null array
echo "Done\n";
?>
--EXPECT--
*** Testing array_keys() on an array created on the fly ***
array(3) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
}
array(0) {
}
Done
Function Calls
array_keys | 1 |
Stats
MD5 | 39dc8760d8c2f707c563160954ee0afa |
Eval Count | 0 |
Decode Time | 85 ms |