Searched refs:strcoll (Results 1 – 11 of 11) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | strcoll_error.phpt | 2 Test strcoll() function : error conditions 5 /* Prototype: int strcoll ( string $str1 , string $str2 ) 9 echo "*** Testing strcoll() : error conditions ***\n"; 11 echo "\n-- Testing strcoll() function with no arguments --\n"; 12 var_dump( strcoll() ); 13 var_dump( strcoll("") ); 16 var_dump( strcoll("Hello World") ); 20 var_dump( strcoll("Hello World", "World", $extra_arg) ); 25 *** Testing strcoll() : error conditions *** 27 -- Testing strcoll() function with no arguments -- [all …]
|
H A D | strcoll.phpt | 2 Testing Basic behaviour of strcoll() 14 $result = strcoll($a, $b);
|
/PHP-7.2/main/ |
H A D | php_scandir.c | 53 return strcoll((*a)->d_name,(*b)->d_name); in php_alphasort()
|
/PHP-7.2/win32/build/ |
H A D | config.w32.h.in | 142 /* Win32 supports strcoll */
|
/PHP-7.2/ext/standard/ |
H A D | php_string.h | 99 PHP_FUNCTION(strcoll);
|
H A D | string.c | 731 PHP_FUNCTION(strcoll) in PHP_FUNCTION() argument 740 RETURN_LONG(strcoll((const char *) ZSTR_VAL(s1), in PHP_FUNCTION()
|
H A D | basic_functions.c | 2789 PHP_FE(strcoll, arginfo_strcoll)
|
H A D | array.c | 355 return strcoll(s1, s2); in php_array_key_compare_string_locale()
|
/PHP-7.2/main/streams/ |
H A D | streams.c | 2235 return strcoll(ZSTR_VAL(*a), ZSTR_VAL(*b)); 2243 return strcoll(ZSTR_VAL(*b), ZSTR_VAL(*a));
|
/PHP-7.2/Zend/ |
H A D | zend_operators.c | 1871 int ret = strcoll(ZSTR_VAL(str1), ZSTR_VAL(str2)); in string_locale_compare_function()
|
/PHP-7.2/ |
H A D | configure.ac | 663 strcoll \
|
Completed in 68 milliseconds