Searched refs:isalnum (Results 1 – 20 of 20) sorted by relevance
/PHP-8.4/ext/pcre/pcre2lib/ |
H A D | pcre2_maketables.c | 124 if (isalnum(i)) p[cbit_word + i/8] |= 1u << (i&7); 147 if (isalnum(i) || i == '_') x += ctype_word;
|
H A D | pcre2_convert.c | 553 case 1: return isalnum(c); in convert_glob_char_in_class() 565 case 13: return isalnum(c) || c == CHAR_UNDERSCORE; in convert_glob_char_in_class()
|
/PHP-8.4/ext/intl/uchar/tests/ |
H A D | basic-functionality.phpt | 17 'istitle', 'isdigit', 'isalpha', 'isalnum', 67 isalnum(): bool(true) 95 isalnum(): bool(true) 123 isalnum(): bool(false)
|
/PHP-8.4/ext/ctype/ |
H A D | ctype.c | 110 ctype_impl(isalnum, 1, 0); in PHP_FUNCTION()
|
/PHP-8.4/main/ |
H A D | php_ini_builder.c | 70 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') { in php_ini_builder_define()
|
H A D | fopen_wrappers.c | 514 for (p = filename; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++); 546 for (p = ptr; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++); 615 for (p = trypath; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++);
|
/PHP-8.4/ext/filter/ |
H A D | logical_filters.c | 531 if(*s == '.' || (hostname && !isalnum((int)*(unsigned char *)s))) { in _php_filter_validate_domain() 538 …if (*(s + 1) == '.' || (hostname && (!isalnum((int)*(unsigned char *)(s - 1)) || !isalnum((int)*(u… in _php_filter_validate_domain() 545 …if (i > 63 || (hostname && (*s != '-' || *(s + 1) == '\0') && !isalnum((int)*(unsigned char *)s)))… in _php_filter_validate_domain()
|
/PHP-8.4/ext/standard/ |
H A D | versioning.c | 62 } else if (!isalnum(*p)) { in php_canonicalize_version()
|
H A D | file.c | 2265 if (isalnum(ch)) { in php_next_meta_token() 2268 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && (isalnum(ch) || strchr… in php_next_meta_token()
|
/PHP-8.4/main/streams/ |
H A D | transports.c | 98 for (p = name; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) { in _php_stream_xport_create()
|
H A D | streams.c | 1895 if (!isalnum((int)protocol[i]) && in php_stream_wrapper_scheme_validate() 1975 for (p = path; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
|
/PHP-8.4/ext/intl/uchar/ |
H A D | uchar.c | 552 IC_BOOL_METHOD_CHAR(isalnum) in IC_BOOL_METHOD_CHAR()
|
H A D | uchar.stub.php | 1486 public static function isalnum(int|string $codepoint): ?bool {} function in IntlChar
|
H A D | uchar_arginfo.h | 214 ZEND_METHOD(IntlChar, isalnum); 277 ZEND_ME(IntlChar, isalnum, arginfo_class_IntlChar_isalnum, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
|
/PHP-8.4/ext/pdo/ |
H A D | pdo_sql_parser.re | 120 if ((ZSTR_VAL(inquery) < (s.cur - len)) && isalnum(*(s.cur - len - 1))) {
|
/PHP-8.4/sapi/fpm/fpm/ |
H A D | fpm_conf.c | 979 …if (!isalnum(status[i]) && status[i] != '/' && status[i] != '-' && status[i] != '_' && status[i] !… in fpm_conf_process_all_pools() 1002 …if (!isalnum(ping[i]) && ping[i] != '/' && ping[i] != '-' && ping[i] != '_' && ping[i] != '.' && p… in fpm_conf_process_all_pools()
|
/PHP-8.4/ext/fileinfo/libmagic/ |
H A D | compress.c | 264 if (!isalnum(*p)) in format_decompression_error()
|
H A D | apprentice.c | 2443 return (isascii(x) && isalnum(x)) || strchr(extra, x); in goodchar()
|
/PHP-8.4/ext/pcre/ |
H A D | php_pcre.c | 634 if (isalnum((int)*(unsigned char *)&delimiter) || delimiter == '\\' || delimiter == '\0') { in pcre_get_compiled_regex_cache_ex()
|
/PHP-8.4/ext/opcache/jit/ir/dynasm/ |
H A D | minilua.c | 2770 while(isalnum(ls->current)||ls->current=='_') 2966 }while(isalnum(ls->current)||ls->current=='_'); 7137 case'w':res=isalnum(c);break;
|
Completed in 117 milliseconds