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 array_multisort() function : natural sorting case-insensitive --FILE-- <?php..

Decoded Output download

*** Testing array_multisort() : natural sorting case-insensitive

Did this file decode correctly?

Original Code

--TEST--
Test array_multisort() function : natural sorting case-insensitive
--FILE--
<?php
echo "*** Testing array_multisort() : natural sorting case-insensitive\n";

$a = array(
    'Second',
    'First.1',
    'First.2',
    'First.3',
    'Twentieth',
    'Tenth',
    'Third',
);

$b = array(
    '2 a',
    '1 bb 1',
    '1 bB 2',
    '1 BB 3',
    '20 c',
    '10 d',
    '3 e',
);

array_multisort($b, SORT_NATURAL | SORT_FLAG_CASE, $a);

var_dump($a, $b);

?>
--EXPECT--
*** Testing array_multisort() : natural sorting case-insensitive
array(7) {
  [0]=>
  string(7) "First.1"
  [1]=>
  string(7) "First.2"
  [2]=>
  string(7) "First.3"
  [3]=>
  string(6) "Second"
  [4]=>
  string(5) "Third"
  [5]=>
  string(5) "Tenth"
  [6]=>
  string(9) "Twentieth"
}
array(7) {
  [0]=>
  string(6) "1 bb 1"
  [1]=>
  string(6) "1 bB 2"
  [2]=>
  string(6) "1 BB 3"
  [3]=>
  string(3) "2 a"
  [4]=>
  string(3) "3 e"
  [5]=>
  string(4) "10 d"
  [6]=>
  string(4) "20 c"
}

Function Calls

None

Variables

$a [{'key': 0, 'value': 'Second'}, {'key': 1, 'value': 'First.1'}, {'key': 2, 'value': 'First.2'}, {'key': 3, 'value': 'First.3'}, {'key': 4, 'value': 'Twentieth'}, {'key': 5, 'value': 'Tenth'}, {'key': 6, 'value': 'Third'}]
$b [{'key': 0, 'value': '2 a'}, {'key': 1, 'value': '1 bb 1'}, {'key': 2, 'value': '1 bB 2'}, {'key': 3, 'value': '1 BB 3'}, {'key': 4, 'value': '20 c'}, {'key': 5, 'value': '10 d'}, {'key': 6, 'value': '3 e'}]

Stats

MD5 11dc6a91f0d62fe0504445cf679cfba5
Eval Count 0
Decode Time 91 ms