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

Signing you up...

Thank you for signing up!

PHP Decode

$tableau = array (10, 6, 12, 0, 687, 10, 6, 238, -6); function compare(int $a, int $b)..

Decoded Output download

<?  $tableau = array (10, 6, 12, 0, 687, 10, 6, 238, -6); 
  
function compare(int $a, int $b) : int { 
  return $a <=> $b; 
} 
  
usort($tableau,'compare'); 
  
print_r($tableau); ?>

Did this file decode correctly?

Original Code

$tableau = array (10, 6, 12, 0, 687, 10, 6, 238, -6);
 
function compare(int $a, int $b) : int {
  return $a <=> $b;
}
 
usort($tableau,'compare');
 
print_r($tableau);

Function Calls

None

Variables

None

Stats

MD5 d426e292a15d0cdf124fb8a69e8d8285
Eval Count 0
Decode Time 76 ms