File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / array / natcasesort_variation8.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 - octal values
--FILE--
<?php
/* Prototype  : bool natcasesort(array &$array_arg)
 * Description: Sort an array using case-insensitive natural sort
 * Source code: ext/standard/array.c
 */

/*
 * Pass an array of octal values to test how natcasesort() re-orders it
 */

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

$unsorted_oct_array = array(01235, 0321, 0345, 066, 0772, 077, -066, -0345, 0);

var_dump( natcasesort($unsorted_oct_array) );
var_dump($unsorted_oct_array);

echo "Done";
?>
--EXPECTF--
*** Testing natcasesort() : usage variation ***
bool(true)
array(9) {
  [6]=>
  int(-54)
  [7]=>
  int(-229)
  [8]=>
  int(0)
  [3]=>
  int(54)
  [5]=>
  int(63)
  [1]=>
  int(209)
  [2]=>
  int(229)
  [4]=>
  int(506)
  [0]=>
  int(669)
}
Done

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