summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strnatcmp_leftalign.phpt
blob: bdff3d2181d144c42e91c34723e006159eb45f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Test strnatcmp() function : left align, whitespace, digits
--CREDITS--
Sol Richardson <sr5732358@hotmail.com>
--FILE--
<?php
echo "-- Testing strnatcmp() function whitespace, left-align, digit --\n";
echo "-- Leading whitespace, digits, string 1 longer --\n";
$str1 = " 00";
$str2 = " 0";
var_dump( strnatcmp( $str1, $str2) );

echo "-- Leading whitespace, digits, string 2 longer --\n";
$str1 = " 0";
$str2 = " 00";
var_dump( strnatcmp( $str1, $str2) );
?>
--EXPECT--
-- Testing strnatcmp() function whitespace, left-align, digit --
-- Leading whitespace, digits, string 1 longer --
int(1)
-- Leading whitespace, digits, string 2 longer --
int(-1)