Home
last modified time | relevance | path

Searched refs:strcmp (Results 26 – 50 of 154) sorted by relevance

1234567

/php-src/ext/standard/tests/url/
H A Dbase64_loop_001.phpt21 $result .= strcmp($str, $str_dec);
/php-src/ext/standard/
H A Dphp_fopen_wrapper.c245 if (!strcmp(sapi_module.name, "cli")) { in php_stream_url_wrap_php()
261 if (!strcmp(sapi_module.name, "cli")) { in php_stream_url_wrap_php()
277 if (!strcmp(sapi_module.name, "cli")) { in php_stream_url_wrap_php()
298 if (strcmp(sapi_module.name, "cli")) { in php_stream_url_wrap_php()
/php-src/ext/com_dotnet/
H A Dcom_extension.c115 if (!strcmp(modifier, "cis") || !strcmp(modifier, "case_insensitive")) { in ZEND_GET_MODULE()
/php-src/ext/dom/tests/delayed_freeing/
H A Dentity_declaration.phpt20 if (strcmp($entity1->nodeName, $entity2->nodeName) < 0) {
/php-src/ext/dom/
H A Dxml_serializer.c89 return strcmp((const char *) s1, (const char *) s2) == 0; in dom_xml_str_equals_treat_nulls_as_empty()
100 return strcmp((const char *) s1, (const char *) s2) == 0; in dom_xml_str_equals_treat_nulls_as_nulls()
342 if (strcmp((const char *) namespace_definition, DOM_XML_NS_URI) == 0) { in dom_recording_the_namespace_information()
660 if (strcmp((const char *) attr_value, DOM_XML_NS_URI) == 0) { in dom_xml_serialize_attributes()
677 if (value == NULL || strcmp((const char *) value, (const char *) attr_value) != 0) { in dom_xml_serialize_attributes()
690 if (attr->ns->prefix != NULL && strcmp((const char *) attr->ns->prefix, "xmlns") == 0) { in dom_xml_serialize_attributes()
864 if (prefix != NULL && strcmp((const char *) prefix, "xmlns") == 0) { in dom_xml_serialize_element_node()
879 …if (local_default_namespace != NULL && strcmp((const char *) local_default_namespace, DOM_XML_NS_U… in dom_xml_serialize_element_node()
/php-src/ext/pdo_odbc/
H A Dpdo_odbc.c84 if (strcasecmp(pooling_val, "strict") == 0 || strcmp(pooling_val, "1") == 0) { in PHP_MINIT_FUNCTION()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_substring.c495 int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE); in pcre2_substring_nametable_scan()
505 if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
510 if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
H A Dpcre2_string_utils.c102 PRIV(strcmp)(PCRE2_SPTR str1, PCRE2_SPTR str2) in PRIV() argument
/php-src/ext/opcache/
H A Dzend_accelerator_debug.c45 strcmp(ZCG(accel_directives).error_log, "stderr") == 0) { in zend_accel_error_va_args()
/php-src/sapi/fpm/fpm/
H A Dfpm_env.c183 if (!strcmp(kv->key, "USER")) { in fpm_env_conf_wp()
188 if (!strcmp(kv->key, "HOME")) { in fpm_env_conf_wp()
H A Dfpm_log.c505 strcmp(proc->request_method, "GET") != 0 in fpm_access_log_suppress()
506 && strcmp(proc->request_method, "HEAD") != 0 in fpm_access_log_suppress()
523 if (kv->value && strcmp(kv->value, proc->request_uri) == 0) { in fpm_access_log_suppress()
H A Dfpm_main.c222 return strcmp(fe->name, se->name); in extension_name_cmp()
1091 strcmp(env_path_translated, script_path_translated) != 0) { in init_request_info()
1152 tflag = (slen != 0 && (!orig_path_info || strcmp(orig_path_info, path_info) != 0)); in init_request_info()
1166 strcmp(orig_script_name, env_path_info) != 0) { in init_request_info()
1191 !strcmp(env_script_name + (env_script_file_info_start = snlen - slen), path_info) in init_request_info()
1196 …!strcmp(env_script_name + (env_script_file_info_start = snlen - decoded_path_info_len), decoded_pa… in init_request_info()
1210 strcmp(orig_script_filename, pt) != 0) { in init_request_info()
1287 strcmp(orig_script_name, env_script_name) != 0) { in init_request_info()
1303 strcmp(script_path_translated, orig_script_filename) != 0)) { in init_request_info()
/php-src/ext/standard/tests/array/
H A D003.phpt14 return strcmp ($a, $b);
/php-src/ext/soap/
H A Dsoap.c1172 strcmp(SG(request_info).request_method, "GET") == 0 &&
1751 strcmp(SOAP_GLOBAL(error_code),"WSDL") != 0) {
2780 if (strcmp(fault_code,"Client") == 0 ||
2781 strcmp(fault_code,"Server") == 0 ||
2782 strcmp(fault_code,"VersionMismatch") == 0 ||
2783 strcmp(fault_code,"MustUnderstand") == 0) {
2787 if (strcmp(fault_code,"Client") == 0) {
2790 } else if (strcmp(fault_code,"Server") == 0) {
2794 strcmp(fault_code,"MustUnderstand") == 0 ||
3298 } else if (strcmp((char*)param->name,"return") == 0) {
[all …]
H A Dphp_packet_soap.c90 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
140 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
166 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
/php-src/ext/dom/tests/compareDocumentPosition/
H A Dentity.phpt21 usort($entities, fn ($a, $b) => strcmp($a->nodeName, $b->nodeName));
/php-src/ext/date/
H A Dphp_date_arginfo.h822 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC3339, "Y-m-d\\TH:i:sP") == 0); in register_php_date_symbols()
824 ZEND_ASSERT(strcmp(DATE_FORMAT_COOKIE, "l, d-M-Y H:i:s T") == 0); in register_php_date_symbols()
826 ZEND_ASSERT(strcmp(DATE_FORMAT_ISO8601, "Y-m-d\\TH:i:sO") == 0); in register_php_date_symbols()
828 ZEND_ASSERT(strcmp(DATE_FORMAT_ISO8601_EXPANDED, "X-m-d\\TH:i:sP") == 0); in register_php_date_symbols()
830 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC822, "D, d M y H:i:s O") == 0); in register_php_date_symbols()
832 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC850, "l, d-M-y H:i:s T") == 0); in register_php_date_symbols()
834 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC1036, "D, d M y H:i:s O") == 0); in register_php_date_symbols()
836 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC1123, "D, d M Y H:i:s O") == 0); in register_php_date_symbols()
838 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC7231, "D, d M Y H:i:s \\G\\M\\T") == 0); in register_php_date_symbols()
840 ZEND_ASSERT(strcmp(DATE_FORMAT_RFC2822, "D, d M Y H:i:s O") == 0); in register_php_date_symbols()
[all …]
/php-src/ext/intl/dateformat/
H A Ddateformat_parse.c76 if( strcmp(key_name, CALENDAR_YEAR )==0 ){ in add_to_localtime_arr()
79 }else if( strcmp(key_name, CALENDAR_WDAY )==0 ){ in add_to_localtime_arr()
/php-src/ext/standard/tests/file/
H A Dfgets_socket_variation2.phpt47 if (strcmp($line, LINE_OF_DATA) != 0) {
/php-src/ext/standard/tests/strings/
H A Dstripslashes_basic.phpt25 if( strcmp($str, $str_stripslashes) != 0 )
/php-src/ext/hash/tests/
H A Dmhash_003.phpt26 if (!strcmp(bin2hex($result), $wanted)) {
/php-src/ext/pdo_odbc/tests/
H A Dmax_columns.phpt38 if (strcmp($expect, $row[1])) {
/php-src/main/
H A DSAPI.c412 if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "HEAD")) { in sapi_activate_headers_only()
454 if (SG(request_info).request_method && !strcmp(SG(request_info).request_method, "HEAD")) { in sapi_activate()
468 && !strcmp(SG(request_info).request_method, "POST")) { in sapi_activate()
819 strcmp(SG(request_info).request_method, "HEAD") && in sapi_header_op()
820 strcmp(SG(request_info).request_method, "GET")) { in sapi_header_op()
1039 if (strlen(sapi_module.name) == sizeof("cgi-fcgi") - 1 && !strcmp(sapi_module.name, "cgi-fcgi")) { in sapi_getenv()
/php-src/Zend/
H A Dzend_extensions.c116 } else if (strcmp(ZEND_EXTENSION_BUILD_ID, extension_version_info->build_id) && in zend_load_extension_handle()
345 if (!strcmp(extension->name, extension_name)) { in zend_get_extension()
/php-src/ext/dba/
H A Ddba_db4.c47 if (function && (!strcmp(function,"dba_popen") || !strcmp(function,"dba_open")) in php_dba_db4_errcall_fcn()

Completed in 64 milliseconds

1234567