mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Some more work on property/names stuff.
This commit is contained in:
parent
2c42e06895
commit
c631205e0c
3 changed files with 129 additions and 24 deletions
|
@ -231,7 +231,6 @@ PHP_FUNCTION(unicode_get_subst_char)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
/* {{{ unicode_functions[] */
|
||||
zend_function_entry unicode_functions[] = {
|
||||
PHP_FE(locale_get_default, NULL)
|
||||
|
@ -276,13 +275,18 @@ zend_function_entry unicode_functions[] = {
|
|||
PHP_FE(char_is_titlecase, NULL)
|
||||
|
||||
PHP_FE(char_get_numeric_value, NULL)
|
||||
PHP_FE(char_get_combining_class, NULL)
|
||||
PHP_FE(char_get_digit_value, NULL)
|
||||
PHP_FE(char_get_combining_class, NULL)
|
||||
PHP_FE(char_get_mirrored, NULL)
|
||||
PHP_FE(char_get_direction, NULL)
|
||||
PHP_FE(char_get_age, NULL)
|
||||
PHP_FE(char_get_type, NULL)
|
||||
PHP_FE(char_is_valid, NULL)
|
||||
|
||||
PHP_FE(char_from_digit, NULL)
|
||||
PHP_FE(char_from_name, NULL)
|
||||
PHP_FE(char_get_name, NULL)
|
||||
|
||||
{ NULL, NULL, NULL }
|
||||
};
|
||||
/* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue