mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
- Change unicode_enabled() to unicode_semantics() per Andrei's suggestion
This commit is contained in:
parent
6da04e6292
commit
4e172c21a5
1 changed files with 3 additions and 3 deletions
|
@ -68,9 +68,9 @@ static PHP_FUNCTION(unicode_decode)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ proto bool unicode_enabled()
|
||||
/* {{{ proto bool unicode_semantics()
|
||||
Check whether unicode semantics is enabled */
|
||||
static PHP_FUNCTION(unicode_enabled)
|
||||
static PHP_FUNCTION(unicode_semantics)
|
||||
{
|
||||
RETURN_BOOL(UG(unicode));
|
||||
}
|
||||
|
@ -117,7 +117,7 @@ zend_function_entry unicode_functions[] = {
|
|||
PHP_FE(i18n_loc_get_default, NULL)
|
||||
PHP_FE(i18n_loc_set_default, NULL)
|
||||
PHP_FE(unicode_decode, NULL)
|
||||
PHP_FE(unicode_enabled, NULL)
|
||||
PHP_FE(unicode_semantics, NULL)
|
||||
PHP_FE(unicode_encode, NULL)
|
||||
PHP_FE(i18n_strtotitle, NULL)
|
||||
{ NULL, NULL, NULL }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue