diff options
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 7a2c5ecfb0..c59f716e57 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -79,9 +79,12 @@ PHP_FUNCTION(strnatcasecmp); PHP_FUNCTION(substr_count); PHP_FUNCTION(str_pad); PHP_FUNCTION(sscanf); +#ifdef HAVE_STRCOLL +PHP_FUNCTION(strcoll); +#endif -#if defined(HAVE_LOCALECONV) && defined(ZTS) +#ifdef ZTS PHP_MINIT_FUNCTION(localeconv); PHP_MSHUTDOWN_FUNCTION(localeconv); #endif |