File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / array / natcasesort_variation7.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:03 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Test natcasesort() function : usage variations - recursive arrays
--FILE--
<?php
/* Prototype  : bool natcasesort(array &$array_arg)
 * Description: Sort an array using case-insensitive natural sort
 * Source code: ext/standard/array.c
 */

/*
 * Pass natcasesort() an infinitely recursive array to test how it is re-ordered
 */

echo "*** Testing natcasesort() : usage variations ***\n";

$array = array (1, 3.00, 'zero', '2');
$array[] = &$array;
var_dump($array);

var_dump(@natcasesort($array));
var_dump($array);

echo "Done";
?>
--EXPECTF--
*** Testing natcasesort() : usage variations ***
array(5) {
  [0]=>
  int(1)
  [1]=>
  float(3)
  [2]=>
  string(4) "zero"
  [3]=>
  string(1) "2"
  [4]=>
  &array(5) {
    [0]=>
    int(1)
    [1]=>
    float(3)
    [2]=>
    string(4) "zero"
    [3]=>
    string(1) "2"
    [4]=>
    *RECURSION*
  }
}
bool(true)
array(5) {
  [0]=>
  int(1)
  [3]=>
  string(1) "2"
  [1]=>
  float(3)
  [4]=>
  &array(5) {
    [0]=>
    int(1)
    [3]=>
    string(1) "2"
    [1]=>
    float(3)
    [4]=>
    *RECURSION*
    [2]=>
    string(4) "zero"
  }
  [2]=>
  string(4) "zero"
}
Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>