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 natcasesort() function : usage variations - position of internal array point..
Decoded Output download
*** Testing natcasesort() : usage variations ***
-- Initial Position of Internal Pointer: --
Did this file decode correctly?
Original Code
--TEST--
Test natcasesort() function : usage variations - position of internal array pointer
--FILE--
<?php
/*
* Check position of internal array pointer after calling natcasesort()
*/
echo "*** Testing natcasesort() : usage variations ***\n";
$array_arg = array ('img13', 'img20', 'img2', 'img1');
echo "\n-- Initial Position of Internal Pointer: --\n";
echo key($array_arg) . " => " . current ($array_arg) . "\n";
echo "\n-- Call natcasesort() --\n";
var_dump(natcasesort($array_arg));
var_dump($array_arg);
echo "\n-- Position of Internal Pointer in Passed Array: --\n";
echo key($array_arg) . " => " . current ($array_arg) . "\n";
echo "Done";
?>
--EXPECT--
*** Testing natcasesort() : usage variations ***
-- Initial Position of Internal Pointer: --
0 => img13
-- Call natcasesort() --
bool(true)
array(4) {
[3]=>
string(4) "img1"
[2]=>
string(4) "img2"
[0]=>
string(5) "img13"
[1]=>
string(5) "img20"
}
-- Position of Internal Pointer in Passed Array: --
3 => img1
Done
Function Calls
key | 1 |
Stats
MD5 | db291bb724919d4942f1c4bad59e1b1d |
Eval Count | 0 |
Decode Time | 107 ms |