Home
last modified time | relevance | path

Searched refs:strcasecmp (Results 1 – 25 of 99) sorted by last modified time

1234

/PHP-7.4/
H A Dconfigure.ac638 strcasecmp \
/PHP-7.4/ext/phar/
H A Dphar.c57 if (ZSTR_LEN(new_value) == 2 && !strcasecmp("on", ZSTR_VAL(new_value))) { in ZEND_INI_MH()
60 else if (ZSTR_LEN(new_value) == 3 && !strcasecmp("yes", ZSTR_VAL(new_value))) { in ZEND_INI_MH()
63 else if (ZSTR_LEN(new_value) == 4 && !strcasecmp("true", ZSTR_VAL(new_value))) { in ZEND_INI_MH()
/PHP-7.4/main/
H A Dphp_variables.c793 !strcasecmp(SG(request_info).request_method, "POST")) { in php_auto_globals_create_post()
H A Dmain.c505 if (value_length == 2 && !strcasecmp("on", value)) { in php_get_display_errors_mode()
507 } else if (value_length == 3 && !strcasecmp("yes", value)) { in php_get_display_errors_mode()
509 } else if (value_length == 4 && !strcasecmp("true", value)) { in php_get_display_errors_mode()
511 } else if (value_length == 6 && !strcasecmp(value, "stderr")) { in php_get_display_errors_mode()
513 } else if (value_length == 6 && !strcasecmp(value, "stdout")) { in php_get_display_errors_mode()
/PHP-7.4/ext/pgsql/
H A Dpgsql.c6221 } else if (!strcasecmp(Z_STRVAL_P(val), "now()")) {
/PHP-7.4/ext/standard/
H A Ddns.c391 if (!strcasecmp("A", rectype)) type = DNS_T_A; in PHP_FUNCTION()
392 else if (!strcasecmp("NS", rectype)) type = DNS_T_NS; in PHP_FUNCTION()
393 else if (!strcasecmp("MX", rectype)) type = DNS_T_MX; in PHP_FUNCTION()
394 else if (!strcasecmp("PTR", rectype)) type = DNS_T_PTR; in PHP_FUNCTION()
395 else if (!strcasecmp("ANY", rectype)) type = DNS_T_ANY; in PHP_FUNCTION()
396 else if (!strcasecmp("SOA", rectype)) type = DNS_T_SOA; in PHP_FUNCTION()
397 else if (!strcasecmp("CAA", rectype)) type = DNS_T_CAA; in PHP_FUNCTION()
398 else if (!strcasecmp("TXT", rectype)) type = DNS_T_TXT; in PHP_FUNCTION()
400 else if (!strcasecmp("AAAA", rectype)) type = DNS_T_AAAA; in PHP_FUNCTION()
401 else if (!strcasecmp("SRV", rectype)) type = DNS_T_SRV; in PHP_FUNCTION()
[all …]
H A Ddns_win32.c117 if (!strcasecmp("A", rectype)) type = DNS_TYPE_A; in PHP_FUNCTION()
118 else if (!strcasecmp("NS", rectype)) type = DNS_TYPE_NS; in PHP_FUNCTION()
119 else if (!strcasecmp("MX", rectype)) type = DNS_TYPE_MX; in PHP_FUNCTION()
120 else if (!strcasecmp("PTR", rectype)) type = DNS_TYPE_PTR; in PHP_FUNCTION()
121 else if (!strcasecmp("ANY", rectype)) type = DNS_TYPE_ANY; in PHP_FUNCTION()
122 else if (!strcasecmp("SOA", rectype)) type = DNS_TYPE_SOA; in PHP_FUNCTION()
123 else if (!strcasecmp("TXT", rectype)) type = DNS_TYPE_TEXT; in PHP_FUNCTION()
124 else if (!strcasecmp("CNAME", rectype)) type = DNS_TYPE_CNAME; in PHP_FUNCTION()
125 else if (!strcasecmp("AAAA", rectype)) type = DNS_TYPE_AAAA; in PHP_FUNCTION()
126 else if (!strcasecmp("SRV", rectype)) type = DNS_TYPE_SRV; in PHP_FUNCTION()
[all …]
H A Dinfo.c755 return strcasecmp(((zend_module_entry *)Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.4/ext/mbstring/
H A Dmbstring.c764 if (strcasecmp(p1, "auto") == 0) { in php_mb_parse_encoding_list()
4439 if (strcasecmp(param_name, "charset") == 0) { in PHP_FUNCTION()
4643 if (!typ || !strcasecmp("all", typ)) { in PHP_FUNCTION()
4720 } else if (!strcasecmp("http_input", typ)) { in PHP_FUNCTION()
4724 } else if (!strcasecmp("http_output", typ)) { in PHP_FUNCTION()
4732 } else if (!strcasecmp("func_overload", typ)) { in PHP_FUNCTION()
4747 } else if (!strcasecmp("mail_charset", typ)) { in PHP_FUNCTION()
4759 } else if (!strcasecmp("illegal_chars", typ)) { in PHP_FUNCTION()
4767 } else if (!strcasecmp("language", typ)) { in PHP_FUNCTION()
4771 } else if (!strcasecmp("detect_order", typ)) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/xml/
H A Dxml.c632 if (strcasecmp((char *)name, (char *)enc->name) == 0) { in xml_get_encoding()
1136 } else if (strcasecmp(encoding_param, "ISO-8859-1") == 0) { in php_xml_parser_create_impl()
1138 } else if (strcasecmp(encoding_param, "UTF-8") == 0) { in php_xml_parser_create_impl()
1140 } else if (strcasecmp(encoding_param, "US-ASCII") == 0) { in php_xml_parser_create_impl()
/PHP-7.4/ext/imap/
H A Dphp_imap.c4787 if ((body->type == TYPEMESSAGE) && (!strcasecmp(body->subtype, "rfc822"))) { in _php_imap_add_body()
/PHP-7.4/Zend/
H A Dzend_API.c1897 if (strcasecmp(dep->name, r->name) == 0) { in zend_sort_modules()
2222 if (!scope && (!strcasecmp(type_name, "self") || !strcasecmp(type_name, "parent"))) { in zend_register_functions()
H A Dzend_compile.c5437 …&& strcasecmp(ZSTR_VAL(zend_ast_get_constant_name(Z_ASTVAL(default_node.u.constant))), "NULL") == … in zend_compile_params()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c248 return strcasecmp( ((zend_module_entry *)Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c194 return strcasecmp( ((zend_module_entry *) Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.4/sapi/cli/
H A Dphp_cli.c183 return strcasecmp(((zend_module_entry *)Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.4/ext/bz2/
H A Dbz2_filter.c333 if (strcasecmp(filtername, "bzip2.decompress") == 0) { in php_bz2_filter_create()
358 } else if (strcasecmp(filtername, "bzip2.compress") == 0) { in php_bz2_filter_create()
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c187 strcasecmp(stream->wrapper->wops->label, "HTTP") == 0 in php_openssl_is_http_stream_talking_to_iis()
338 result = strcasecmp(expected, ZSTR_VAL(fingerprint)); in php_openssl_x509_fingerprint_cmp()
395 if (strcasecmp(subjectname, certname) == 0) { in php_openssl_matches_wildcard_name()
416 return strcasecmp(wildcard + 1, subjectname + subject_len - suffix_len) == 0 && in php_openssl_matches_wildcard_name()
465 if (strcasecmp(subject_name, (const char*)ipbuffer) == 0) { in php_openssl_matches_san_list()
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c2145 if (!strcasecmp(result->values[i].name, field)) { in PHP_FUNCTION()
2989 if (strcasecmp(result->values[i].name, fname) == 0) { in PHP_FUNCTION()
/PHP-7.4/ext/session/
H A Dsession.c1239 if (!strcasecmp(lim->name, PS(cache_limiter))) { in php_session_cache_limiter()
1390 if (*mod && !strcasecmp(name, (*mod)->s_name)) { in _php_find_ps_module()
1405 if (!strcasecmp(name, mod->name)) { in _php_find_ps_serializer()
1721 if(!strcasecmp("lifetime", ZSTR_VAL(key))) { in PHP_FUNCTION()
1724 } else if(!strcasecmp("path", ZSTR_VAL(key))) { in PHP_FUNCTION()
1727 } else if(!strcasecmp("domain", ZSTR_VAL(key))) { in PHP_FUNCTION()
1730 } else if(!strcasecmp("secure", ZSTR_VAL(key))) { in PHP_FUNCTION()
1734 } else if(!strcasecmp("httponly", ZSTR_VAL(key))) { in PHP_FUNCTION()
1738 } else if(!strcasecmp("samesite", ZSTR_VAL(key))) { in PHP_FUNCTION()
/PHP-7.4/ext/dom/
H A Dphp_dom.c1332 if ((!strcasecmp(feature, "Core") && !strcmp (version, "1.0")) || !strcasecmp(feature, "XML")) in dom_has_feature()
/PHP-7.4/ext/dba/
H A Ddba.c498 for (hptr = handler; hptr->name && strcasecmp(hptr->name, ZSTR_VAL(new_value)); hptr++); in ZEND_INI_MH()
718 for (hptr = handler; hptr->name && strcasecmp(hptr->name, Z_STRVAL(args[2])); hptr++); in php_dba_open()
/PHP-7.4/sapi/litespeed/
H A Dlsapi_main.c1648 if (p && 0 == strcasecmp(p, "on")) in PHP_MINIT_FUNCTION()
1653 if (*p == '1' || 0 == strcasecmp(p, "on")) in PHP_MINIT_FUNCTION()
1655 else if (*p == '0' || 0 == strcasecmp(p, "off")) in PHP_MINIT_FUNCTION()
H A Dlsapilib.c2673 else if (!strcasecmp( p, "localhost" ) ) in LSAPI_ParseSockAddr()
/PHP-7.4/ext/reflection/
H A Dphp_reflection.c913 …if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.m… in _extension_class_string()
5887 …if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module && !strcasecmp(ce->info.internal.m… in add_extension_class()

Completed in 225 milliseconds

1234