summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strcoll.phpt
blob: 896f3fd43b931279cff5a70c11bd7d787f463ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing Basic behaviour of strcoll()
--CREDITS--
Sebastian Schürmann
sebs@php.net
Testfest 2009 Munich
--FILE--
<?php

 $a = 'a';
 $b = 'A';

setlocale (LC_COLLATE, 'C');
print "C: " . strcoll ($a, $b) . "\n"; // prints 1
?>
--EXPECT--
C: 1