Home
last modified time | relevance | path

Searched refs:isalnum (Results 1 – 21 of 21) sorted by relevance

/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c122 if (isalnum(i)) p[cbit_word + i/8] |= 1u << (i&7);
145 if (isalnum(i) || i == '_') x += ctype_word;
H A Dpcre2_convert.c545 case 1: return isalnum(c); in convert_glob_char_in_class()
557 case 13: return isalnum(c) || c == CHAR_UNDERSCORE; in convert_glob_char_in_class()
/PHP-8.3/ext/intl/uchar/tests/
H A Dbasic-functionality.phpt17 'istitle', 'isdigit', 'isalpha', 'isalnum',
67 isalnum(): bool(true)
95 isalnum(): bool(true)
123 isalnum(): bool(false)
/PHP-8.3/ext/ctype/
H A Dctype.c112 ctype_impl(isalnum, 1, 0); in PHP_FUNCTION()
/PHP-8.3/main/
H A Dphp_ini_builder.c70 if (!isalnum(*val) && *val != '"' && *val != '\'' && *val != '\0') { in php_ini_builder_define()
H A Dfopen_wrappers.c514 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.3/ext/filter/
H A Dlogical_filters.c531 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 != '-' && !isalnum((int)*(unsigned char *)s))) { in _php_filter_validate_domain()
/PHP-8.3/ext/standard/
H A Dversioning.c62 } else if (!isalnum(*p)) { in php_canonicalize_version()
H A Dfile.c2315 if (isalnum(ch)) { in php_next_meta_token()
2318 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && (isalnum(ch) || strchr… in php_next_meta_token()
/PHP-8.3/main/streams/
H A Dtransports.c98 for (p = name; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) { in _php_stream_xport_create()
H A Dstreams.c1895 if (!isalnum((int)protocol[i]) && in php_stream_wrapper_scheme_validate()
1975 for (p = path; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) {
/PHP-8.3/ext/intl/uchar/
H A Duchar.c544 IC_BOOL_METHOD_CHAR(isalnum) in IC_BOOL_METHOD_CHAR()
H A Duchar.stub.php3467 public static function isalnum(int|string $codepoint): ?bool {} function in IntlChar
H A Duchar_arginfo.h215 ZEND_METHOD(IntlChar, isalnum);
279 ZEND_ME(IntlChar, isalnum, arginfo_class_IntlChar_isalnum, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
/PHP-8.3/ext/pdo/
H A Dpdo_sql_parser.re108 if ((ZSTR_VAL(inquery) < (s.cur - len)) && isalnum(*(s.cur - len - 1))) {
/PHP-8.3/ext/fileinfo/libmagic/
H A Dcompress.c244 if (!isalnum(*p)) in format_decompression_error()
H A Dapprentice.c2438 return (isascii(x) && isalnum(x)) || strchr(extra, x); in goodchar()
/PHP-8.3/sapi/fpm/fpm/
H A Dfpm_conf.c979 …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.3/ext/pcre/
H A Dphp_pcre.c650 if (isalnum((int)*(unsigned char *)&delimiter) || delimiter == '\\' || delimiter == '\0') { in pcre_get_compiled_regex_cache_ex()
/PHP-8.3/ext/opcache/jit/dynasm/
H A Dminilua.c2769 while(isalnum(ls->current)||ls->current=='_')
2965 }while(isalnum(ls->current)||ls->current=='_');
7131 case'w':res=isalnum(c);break;
/PHP-8.3/ext/imap/
H A Dphp_imap.c2256 #define B64CHAR(c) (isalnum(c) || (c) == '+' || (c) == ',')

Completed in 122 milliseconds