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 uasort() function : usage variations - sort array with all possible keys --F..

Decoded Output download

--TEST--
Test uasort() function : usage variations - sort array with all possible keys
--FILE--
<?php
/*
* Testing uasort() with 'array_arg' having different keys
*/

echo "*** Testing uasort() : Sorting array with all possible keys ***
";

//comparison function
function cmp_function($value1, $value2)
{
  if($value1 == $value2) {
    return 0;
  }
  else if($value1 > $value2) {
    return -1;
  }
  else {
    return 1;
  }
}

// different heredoc strings
//empty heredoc string
$empty_heredoc = <<<EOT1
EOT1;

// single line heredoc string
$simple_heredoc = <<<EOT2
simple
EOT2;

// multiline heredoc string
$multiline_heredoc = <<<EOT3
multiline heredoc with 123
and speci@! ch@r..
check	also
EOT3;

$array_arg = array(
  // default key
  1,  //expecting: default key 0, value will be replaced by 'FALSE'

  // numeric keys
  1 => 10, // expecting: value will be replaced by 'TRUE'
  -2 => 9,
  012 => 7,
  0x34 => 6,

  // string keys
  'key' => 5,  //single quoted key
  "two" => 4,  //double quoted key
  '' => 3,
  "" => 2,
  " " => 0,  // space as key

  // bool keys
  true => 15,
  false => 5,
  TRUE => 100,
  FALSE => 25,

  // null keys
  null => 20,  // expecting: value will be replaced by 'NULL'
  NULL => 35,

  // binary key
  "a".chr(0)."b" => 45,
  b"binary" => 30,

  //heredoc keys
  $empty_heredoc => 90,
  $simple_heredoc => 75,
  $multiline_heredoc => 200,
);

var_dump( uasort($array_arg, 'cmp_function') );
echo "-- Sorted array after uasort() function call --
";
var_dump($array_arg);

echo "Done"
?>
--EXPECTF--
*** Testing uasort() : Sorting array with all possible keys ***
bool(true)
-- Sorted array after uasort() function call --
array(13) {
  ["multiline heredoc with 123
and speci@! ch@r..
check	also"]=>
  int(200)
  [1]=>
  int(100)
  [""]=>
  int(90)
  ["simple"]=>
  int(75)
  ["a%0b"]=>
  int(45)
  ["binary"]=>
  int(30)
  [0]=>
  int(25)
  [-2]=>
  int(9)
  [10]=>
  int(7)
  [52]=>
  int(6)
  ["key"]=>
  int(5)
  ["two"]=>
  int(4)
  [" "]=>
  int(0)
}
Done

Did this file decode correctly?

Original Code

--TEST--
Test uasort() function : usage variations - sort array with all possible keys
--FILE--
<?php
/*
* Testing uasort() with 'array_arg' having different keys
*/

echo "*** Testing uasort() : Sorting array with all possible keys ***\n";

//comparison function
function cmp_function($value1, $value2)
{
  if($value1 == $value2) {
    return 0;
  }
  else if($value1 > $value2) {
    return -1;
  }
  else {
    return 1;
  }
}

// different heredoc strings
//empty heredoc string
$empty_heredoc = <<<EOT1
EOT1;

// single line heredoc string
$simple_heredoc = <<<EOT2
simple
EOT2;

// multiline heredoc string
$multiline_heredoc = <<<EOT3
multiline heredoc with 123
and speci@! ch@r..\ncheck\talso
EOT3;

$array_arg = array(
  // default key
  1,  //expecting: default key 0, value will be replaced by 'FALSE'

  // numeric keys
  1 => 10, // expecting: value will be replaced by 'TRUE'
  -2 => 9,
  012 => 7,
  0x34 => 6,

  // string keys
  'key' => 5,  //single quoted key
  "two" => 4,  //double quoted key
  '' => 3,
  "" => 2,
  " " => 0,  // space as key

  // bool keys
  true => 15,
  false => 5,
  TRUE => 100,
  FALSE => 25,

  // null keys
  null => 20,  // expecting: value will be replaced by 'NULL'
  NULL => 35,

  // binary key
  "a".chr(0)."b" => 45,
  b"binary" => 30,

  //heredoc keys
  $empty_heredoc => 90,
  $simple_heredoc => 75,
  $multiline_heredoc => 200,
);

var_dump( uasort($array_arg, 'cmp_function') );
echo "-- Sorted array after uasort() function call --\n";
var_dump($array_arg);

echo "Done"
?>
--EXPECTF--
*** Testing uasort() : Sorting array with all possible keys ***
bool(true)
-- Sorted array after uasort() function call --
array(13) {
  ["multiline heredoc with 123
and speci@! ch@r..
check	also"]=>
  int(200)
  [1]=>
  int(100)
  [""]=>
  int(90)
  ["simple"]=>
  int(75)
  ["a%0b"]=>
  int(45)
  ["binary"]=>
  int(30)
  [0]=>
  int(25)
  [-2]=>
  int(9)
  [10]=>
  int(7)
  [52]=>
  int(6)
  ["key"]=>
  int(5)
  ["two"]=>
  int(4)
  [" "]=>
  int(0)
}
Done

Function Calls

None

Variables

None

Stats

MD5 e6d9f3a81c36b1a5ec26d0a7b9e374b2
Eval Count 0
Decode Time 93 ms