~ubuntu-branches/ubuntu/quantal/php5/quantal

« back to all changes in this revision

Viewing changes to ext/standard/tests/array/natsort_basic.phpt

  • Committer: Bazaar Package Importer
  • Author(s): Sean Finney
  • Date: 2009-07-01 09:12:10 UTC
  • mto: (0.9.1) (1.1.17 upstream)
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: james.westby@ubuntu.com-20090701091210-go0h6506p62on17r
Tags: upstream-5.3.0
ImportĀ upstreamĀ versionĀ 5.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--TEST--
 
2
Test natsort(): basic functionality
 
3
--FILE--
 
4
<?php
 
5
/*
 
6
* proto bool natsort ( array &$array )
 
7
* Function is implemented in ext/standard/array.c
 
8
*/
 
9
$array1 = $array2 = array("img12.png", "img10.png", "img2.png", "img1.png");
 
10
sort($array1);
 
11
echo "Standard sorting\n";
 
12
print_r($array1);
 
13
natsort($array2);
 
14
echo "\nNatural order sorting\n";
 
15
print_r($array2);
 
16
?>
 
17
--EXPECT--
 
18
Standard sorting
 
19
Array
 
20
(
 
21
    [0] => img1.png
 
22
    [1] => img10.png
 
23
    [2] => img12.png
 
24
    [3] => img2.png
 
25
)
 
26
 
 
27
Natural order sorting
 
28
Array
 
29
(
 
30
    [3] => img1.png
 
31
    [2] => img2.png
 
32
    [1] => img10.png
 
33
    [0] => img12.png
 
34
)
 
35