mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Implement C/POSIX migration functions.
This commit is contained in:
parent
675ecc637b
commit
f0640426cb
2 changed files with 100 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "php_unicode.h"
|
||||
#include "zend_unicode.h"
|
||||
#include "php_property.h"
|
||||
|
||||
void php_register_unicode_iterators(TSRMLS_D);
|
||||
|
||||
|
@ -246,6 +247,21 @@ zend_function_entry unicode_functions[] = {
|
|||
PHP_FE(collator_compare, NULL)
|
||||
PHP_FE(collator_get_default, NULL)
|
||||
PHP_FE(collator_set_default, NULL)
|
||||
|
||||
/* character property functions */
|
||||
PHP_FE(unicode_is_lower, NULL)
|
||||
PHP_FE(unicode_is_upper, NULL)
|
||||
PHP_FE(unicode_is_digit, NULL)
|
||||
PHP_FE(unicode_is_alpha, NULL)
|
||||
PHP_FE(unicode_is_alnum, NULL)
|
||||
PHP_FE(unicode_is_xdigit, NULL)
|
||||
PHP_FE(unicode_is_punct, NULL)
|
||||
PHP_FE(unicode_is_graph, NULL)
|
||||
PHP_FE(unicode_is_blank, NULL)
|
||||
PHP_FE(unicode_is_space, NULL)
|
||||
PHP_FE(unicode_is_cntrl, NULL)
|
||||
PHP_FE(unicode_is_print, NULL)
|
||||
|
||||
{ NULL, NULL, NULL }
|
||||
};
|
||||
/* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue