Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php function f(Closure $closure = null) { $array = [3, 2, 1]; usort($array, $clo..
Decoded Output download
<?php
function f(Closure $closure = null) {
$array = [3, 2, 1];
usort($array, $closure);
}
f(function($a, $b) { return $a <=> $b; });
?>
Did this file decode correctly?
Original Code
<?php
function f(Closure $closure = null) {
$array = [3, 2, 1];
usort($array, $closure);
}
f(function($a, $b) { return $a <=> $b; });
Function Calls
None |
Stats
MD5 | da54414586a9f32e308386e49709c70b |
Eval Count | 0 |
Decode Time | 90 ms |