--TEST--
-Test strcoll() function : error conditions
+Test strcoll() function : error conditions
+--SKIPIF--
+<?php if (!function_exists('strcoll')) die('skip strcoll function not available') ?>
--FILE--
<?php
/* Prototype: int strcoll ( string $str1 , string $str2 )
var_dump( strcoll("") );
echo "\n-- Testing strcoll() function with one argument --\n";
-var_dump( strcoll("Hello World") );
+var_dump( strcoll("Hello World") );
echo "\n-- Testing strcoll() function with more than expected no. of arguments --\n";
$extra_arg = 10;
Warning: strcoll() expects exactly 2 parameters, 3 given in %s on line %d
NULL
-===Done===
\ No newline at end of file
+===Done===