Home
last modified time | relevance | path

Searched refs:strcasecmp (Results 76 – 100 of 116) sorted by relevance

12345

/PHP-7.1/ext/zip/lib/
H A Dzipint.h131 #define strcasecmp _stricmp macro
133 #define strcasecmp stricmp macro
/PHP-7.1/ext/opcache/
H A Dzend_accelerator_module.c235 if ((ZSTR_LEN(new_value) == 2 && strcasecmp("on", ZSTR_VAL(new_value)) == 0) || in ZEND_INI_MH()
236 (ZSTR_LEN(new_value) == 3 && strcasecmp("yes", ZSTR_VAL(new_value)) == 0) || in ZEND_INI_MH()
237 (ZSTR_LEN(new_value) == 4 && strcasecmp("true", ZSTR_VAL(new_value)) == 0) || in ZEND_INI_MH()
/PHP-7.1/ext/iconv/
H A Diconv.c2531 if(!strcasecmp("input_encoding", type)) { in PHP_FUNCTION()
2533 } else if(!strcasecmp("output_encoding", type)) { in PHP_FUNCTION()
2535 } else if(!strcasecmp("internal_encoding", type)) { in PHP_FUNCTION()
2562 if (!strcasecmp("all", type)) { in PHP_FUNCTION()
2567 } else if (!strcasecmp("input_encoding", type)) { in PHP_FUNCTION()
2569 } else if (!strcasecmp("output_encoding", type)) { in PHP_FUNCTION()
2571 } else if (!strcasecmp("internal_encoding", type)) { in PHP_FUNCTION()
/PHP-7.1/sapi/apache2handler/
H A Dsapi_apache2.c120 if (!strcasecmp(sapi_header->header, "content-type")) { in php_apache_sapi_header_handler()
125 } else if (!strcasecmp(sapi_header->header, "content-length")) { in php_apache_sapi_header_handler()
/PHP-7.1/ext/filter/
H A Dlogical_filters.c535 …if (url->scheme != NULL && (!strcasecmp(url->scheme, "http") || !strcasecmp(url->scheme, "https"))… in php_filter_validate_url()
H A Dfilter.c165 if ((strcasecmp(ZSTR_VAL(new_value), filter_list[i].name) == 0)) { in ZEND_GET_MODULE()
/PHP-7.1/main/
H A Dphp_ini.c231 …if (!is_special_section && !strcasecmp(Z_STRVAL_P(arg1), PHP_EXTENSION_TOKEN)) { /* load PHP exten… in php_ini_parser_cb()
234 …} else if (!is_special_section && !strcasecmp(Z_STRVAL_P(arg1), ZEND_EXTENSION_TOKEN)) { /* load Z… in php_ini_parser_cb()
H A Dmain.c351 if (value_length == 2 && !strcasecmp("on", value)) { in php_get_display_errors_mode()
353 } else if (value_length == 3 && !strcasecmp("yes", value)) { in php_get_display_errors_mode()
355 } else if (value_length == 4 && !strcasecmp("true", value)) { in php_get_display_errors_mode()
357 } else if (value_length == 6 && !strcasecmp(value, "stderr")) { in php_get_display_errors_mode()
359 } else if (value_length == 6 && !strcasecmp(value, "stdout")) { in php_get_display_errors_mode()
H A Dphp_variables.c719 !strcasecmp(SG(request_info).request_method, "POST")) { in php_auto_globals_create_post()
/PHP-7.1/ext/standard/
H A Dbrowscap.c334 if (!strcasecmp(Z_STRVAL_P(arg1), "parent")) { in php_browscap_parser_cb()
337 !strcasecmp(ZSTR_VAL(ctx->current_section_name), Z_STRVAL_P(arg2)) in php_browscap_parser_cb()
H A Dfile.c411 md.in_meta = !strcasecmp("meta", md.token_data); in PHP_FUNCTION()
413 if (strcasecmp("head", md.token_data) == 0) { in PHP_FUNCTION()
440 if (strcasecmp("name", md.token_data) == 0) { in PHP_FUNCTION()
444 } else if (strcasecmp("content", md.token_data) == 0) { in PHP_FUNCTION()
1717 !strcasecmp(sp, dp); in php_copy_file_ctx()
H A Dinfo.c817 return strcasecmp(((zend_module_entry *)Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.1/ext/xml/
H A Dxml.c555 if (strcasecmp((char *)name, (char *)enc->name) == 0) { in xml_get_encoding()
1119 } else if (strcasecmp(encoding_param, "ISO-8859-1") == 0) { in php_xml_parser_create_impl()
1121 } else if (strcasecmp(encoding_param, "UTF-8") == 0) { in php_xml_parser_create_impl()
1123 } else if (strcasecmp(encoding_param, "US-ASCII") == 0) { in php_xml_parser_create_impl()
/PHP-7.1/ext/openssl/
H A Dxp_ssl.c159 …if (Z_TYPE(stream->wrapperdata) == IS_ARRAY && stream->wrapper && strcasecmp(stream->wrapper->wops… in is_http_stream_talking_to_iis()
307 result = strcasecmp(expected, ZSTR_VAL(fingerprint)); in php_x509_fingerprint_cmp()
364 if (strcasecmp(subjectname, certname) == 0) { in matches_wildcard_name()
385 return strcasecmp(wildcard + 1, subjectname + subject_len - suffix_len) == 0 && in matches_wildcard_name()
432 if (strcasecmp(subject_name, (const char*)ipbuffer) == 0) { in matches_san_list()
/PHP-7.1/ext/dba/
H A Ddba.c495 for (hptr = handler; hptr->name && strcasecmp(hptr->name, ZSTR_VAL(new_value)); hptr++); in ZEND_INI_MH()
702 for (hptr = handler; hptr->name && strcasecmp(hptr->name, Z_STRVAL(args[2])); hptr++); in php_dba_open()
/PHP-7.1/ext/tidy/
H A Dtidy.c1101 if (ZSTR_LEN(new_value)==2 && strcasecmp("on", ZSTR_VAL(new_value))==0) { in PHP_INI_MH()
1103 } else if (ZSTR_LEN(new_value)==3 && strcasecmp("yes", ZSTR_VAL(new_value))==0) { in PHP_INI_MH()
1105 } else if (ZSTR_LEN(new_value)==4 && strcasecmp("true", ZSTR_VAL(new_value))==0) { in PHP_INI_MH()
/PHP-7.1/ext/date/lib/
H A Dparse_date.re572 if (strcasecmp(word, tp->name) == 0) {
605 if (strcasecmp(word, tp->name) == 0) {
652 if (strcasecmp(word, tp->name) == 0) {
701 if (strcasecmp("utc", word) == 0 || strcasecmp("gmt", word) == 0) {
706 if (strcasecmp(word, tp->name) == 0) {
H A Dparse_tz.c320 int cmp = strcasecmp(timezone, tzdb->index[mid].id); in seek_to_tz_position()
/PHP-7.1/ext/odbc/
H A Dbirdstep.c486 if ( !strcasecmp(res->values[i].name,field)) { in PHP_FUNCTION()
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_charset.c764 if (!strcasecmp(c->name, name)) { in mysqlnd_find_charset_name()
/PHP-7.1/Zend/
H A Dzend_builtin_functions.c48 static ZEND_FUNCTION(strcasecmp);
334 ZEND_FE(strcasecmp, arginfo_strcmp)
690 ZEND_FUNCTION(strcasecmp) in ZEND_FUNCTION() argument
/PHP-7.1/ext/dom/
H A Dphp_dom.c1332 if ((!strcasecmp(feature, "Core") && !strcmp (version, "1.0")) || !strcasecmp(feature, "XML")) in dom_has_feature()
/PHP-7.1/ext/session/
H A Dsession.c1183 if (!strcasecmp(lim->name, PS(cache_limiter))) {
1325 if (*mod && !strcasecmp(name, (*mod)->s_name)) {
1340 if (!strcasecmp(name, mod->name)) {
/PHP-7.1/sapi/cli/
H A Dphp_cli.c199 return strcasecmp(((zend_module_entry *)Z_PTR(f->val))->name, in module_name_cmp()
/PHP-7.1/sapi/litespeed/
H A Dlsapi_main.c1415 if (p && 0 == strcasecmp(p, "on")) in PHP_MINIT_FUNCTION()

Completed in 143 milliseconds

12345