1--TEST-- 2Testing Basic behaviour of strcoll() 3--SKIPIF-- 4<?php if (!function_exists('strcoll')) die('skip strcoll function not available') ?> 5--CREDITS-- 6Sebastian Schürmann 7sebs@php.net 8Testfest 2009 Munich 9--FILE-- 10<?php 11 12 $a = 'a'; 13 $b = 'A'; 14 15setlocale (LC_COLLATE, 'C'); 16$result = strcoll($a, $b); 17if($result > 0) { 18 echo "Pass\n"; 19} 20?> 21--EXPECT-- 22Pass 23