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-- usort() is stable --FILE-- <?php $array = range(0, 10000); usort($array, functio..

Decoded Output download

--TEST--
usort() is stable
--FILE--
<?php

$array = range(0, 10000);
usort($array, function($a, $b) {
    // Everything is equal!
    return 0;
});
var_dump($array === range(0, 10000));

?>
--EXPECT--
bool(true)

Did this file decode correctly?

Original Code

--TEST--
usort() is stable
--FILE--
<?php

$array = range(0, 10000);
usort($array, function($a, $b) {
    // Everything is equal!
    return 0;
});
var_dump($array === range(0, 10000));

?>
--EXPECT--
bool(true)

Function Calls

range 1

Variables

None

Stats

MD5 83ca5a89859f61b6b0a0f0433582fe1e
Eval Count 0
Decode Time 85 ms