????JFIF??x?x????'
| Server IP : 79.136.114.73  /  Your IP : 216.73.216.37 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/array/  | 
Upload File :  | 
--TEST--
Test rsort() function : usage variations - Pass different data types as $sort_flags arg
--FILE--
<?php
/* Prototype  : bool rsort(array &$array_arg [, int $sort_flags])
 * Description: Sort an array in reverse order 
 * Source code: ext/standard/array.c
 */
/*
 * Pass different data types as $sort_flags argument to rsort() to test behaviour
 * Where possible, 'SORT_NUMERIC' has been entered as a string value
 */
echo "*** Testing rsort() : variation ***\n";
// Initialise function arguments not being substituted
$array_arg = array (1, 5, 2, 3, 1);
//get an unset variable
$unset_var = 10;
unset ($unset_var);
// get a class
class classA
{
  public function __toString() {
    return "SORT_NUMERIC";
  }
}
// heredoc string
$heredoc = <<<EOT
SORT_NUMERIC
EOT;
// get a resource variable
$fp = fopen(__FILE__, "r");
// unexpected values to be passed to $sort_flags argument
$inputs = array(
       // int data
/*1*/  0,
       1,
       12345,
       -2345,
       // float data
/*5*/  10.5,
       -10.5,
       12.3456789000e10,
       12.3456789000E-10,
       .5,
       // null data
/*10*/ NULL,
       null,
       // boolean data
/*12*/ true,
       false,
       TRUE,
       FALSE,
       
       // empty data
/*16*/ "",
       '',
       // string data
/*18*/ "SORT_NUMERIC",
       'SORT_NUMERIC',
       $heredoc,
       
       // object data
/*21*/ new classA(),
       // undefined data
/*22*/ @$undefined_var,
       // unset data
/*23*/ @$unset_var,
       // resource variable
/*24*/ $fp
);
// loop through each element of $inputs to check the behavior of rsort()
$iterator = 1;
foreach($inputs as $input) {
  echo "\n-- Iteration $iterator --\n";
  
  //create temporary array in case rsort() works
  $temp = $array_arg;
  
  var_dump( rsort($temp, $input) );
  var_dump($temp);
  $iterator++;
  
  $temp = null;
};
fclose($fp);
echo "Done";
?>
--EXPECTF--
*** Testing rsort() : variation ***
-- Iteration 1 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 2 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 3 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 4 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 5 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 6 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 7 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 8 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 9 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 10 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 11 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 12 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 13 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 14 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 15 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 16 --
Warning: rsort() expects parameter 2 to be long, string given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 17 --
Warning: rsort() expects parameter 2 to be long, string given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 18 --
Warning: rsort() expects parameter 2 to be long, string given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 19 --
Warning: rsort() expects parameter 2 to be long, string given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 20 --
Warning: rsort() expects parameter 2 to be long, string given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 21 --
Warning: rsort() expects parameter 2 to be long, object given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
-- Iteration 22 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 23 --
bool(true)
array(5) {
  [0]=>
  int(5)
  [1]=>
  int(3)
  [2]=>
  int(2)
  [3]=>
  int(1)
  [4]=>
  int(1)
}
-- Iteration 24 --
Warning: rsort() expects parameter 2 to be long, resource given in %s on line %d
bool(false)
array(5) {
  [0]=>
  int(1)
  [1]=>
  int(5)
  [2]=>
  int(2)
  [3]=>
  int(3)
  [4]=>
  int(1)
}
Done