Searched refs:case_mode (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/ext/mbstring/ |
H A D | php_unicode.c | 282 MBSTRING_API zend_string *php_unicode_convert_case(php_case_mode case_mode, const char *srcstr, siz… in php_unicode_convert_case() argument 302 switch (case_mode) { in php_unicode_convert_case()
|
H A D | php_unicode.h | 93 php_case_mode case_mode, const char *srcstr, size_t srclen,
|
H A D | mbstring.c | 2857 static zend_string *mbstring_convert_case(php_case_mode case_mode, const char *str, size_t str_len,… in mbstring_convert_case() argument 2859 …return php_unicode_convert_case(case_mode, str, str_len, enc, enc, MBSTRG(current_filter_illegal_m… in mbstring_convert_case() 2865 zend_long case_mode = 0; in PHP_FUNCTION() local 2869 Z_PARAM_LONG(case_mode) in PHP_FUNCTION() 2879 if (case_mode < 0 || case_mode >= PHP_UNICODE_CASE_MODE_MAX) { in PHP_FUNCTION() 2884 RETURN_STR(mbstring_convert_case(case_mode, ZSTR_VAL(str), ZSTR_LEN(str), enc)); in PHP_FUNCTION()
|
Completed in 37 milliseconds