Home
last modified time | relevance | path

Searched refs:strcasecmp (Results 26 – 50 of 116) sorted by relevance

12345

/PHP-7.1/ext/standard/
H A Ddns.c385 if (!strcasecmp("A", rectype)) type = T_A; in PHP_FUNCTION()
386 else if (!strcasecmp("NS", rectype)) type = DNS_T_NS; in PHP_FUNCTION()
387 else if (!strcasecmp("MX", rectype)) type = DNS_T_MX; in PHP_FUNCTION()
388 else if (!strcasecmp("PTR", rectype)) type = DNS_T_PTR; in PHP_FUNCTION()
389 else if (!strcasecmp("ANY", rectype)) type = DNS_T_ANY; in PHP_FUNCTION()
390 else if (!strcasecmp("SOA", rectype)) type = DNS_T_SOA; in PHP_FUNCTION()
391 else if (!strcasecmp("CAA", rectype)) type = DNS_T_CAA; in PHP_FUNCTION()
392 else if (!strcasecmp("TXT", rectype)) type = DNS_T_TXT; in PHP_FUNCTION()
394 else if (!strcasecmp("AAAA", rectype)) type = DNS_T_AAAA; in PHP_FUNCTION()
395 else if (!strcasecmp("SRV", rectype)) type = DNS_T_SRV; in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/standard/tests/array/
H A Darray_intersect_uassoc_variation10.phpt19 return strcasecmp($a, $b);
23 return strcasecmp($a, $b);
H A Darray_intersect_ukey_variation9.phpt19 return strcasecmp($key1, $key2);
23 return strcasecmp($key1, $key2);
H A Darray_diff_ukey_variation7.phpt18 return strcasecmp($key1, $key2);
H A Darray_diff_ukey_variation8.phpt18 return strcasecmp($key1, $key2);
H A Darray_diff_ukey_variation6.phpt23 return strcasecmp($key1, $key2);
/PHP-7.1/ext/oci8/tests/
H A Ddb_op_1.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) {
H A Ddb_op_2.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) {
H A Ddriver_name_11gR2.phpt7 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Dconn_attr_5.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Ddriver_name.phpt7 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Ddrcp_cclass1.phpt11 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Dpassword.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Dpassword_2.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Ddrcp_privileged.phpt11 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
H A Dconn_attr_3.phpt8 if (strcasecmp($user, "system") && strcasecmp($user, "sys")) die("skip needs to be run as a DBA use…
/PHP-7.1/Zend/
H A Dzend_config.w32.h53 #define strcasecmp(s1, s2) _stricmp(s1, s2) macro
H A Dzend_ini.c548 if (ZSTR_LEN(tmp_value) == 4 && strcasecmp(ZSTR_VAL(tmp_value), "true") == 0) { in ZEND_INI_DISP()
550 } else if (ZSTR_LEN(tmp_value) == 3 && strcasecmp(ZSTR_VAL(tmp_value), "yes") == 0) { in ZEND_INI_DISP()
552 } else if (ZSTR_LEN(tmp_value) == 2 && strcasecmp(ZSTR_VAL(tmp_value), "on") == 0) { in ZEND_INI_DISP()
632 if (ZSTR_LEN(new_value) == 2 && strcasecmp("on", ZSTR_VAL(new_value)) == 0) { in ZEND_INI_MH()
635 else if (ZSTR_LEN(new_value) == 3 && strcasecmp("yes", ZSTR_VAL(new_value)) == 0) { in ZEND_INI_MH()
638 else if (ZSTR_LEN(new_value) == 4 && strcasecmp("true", ZSTR_VAL(new_value)) == 0) { in ZEND_INI_MH()
/PHP-7.1/ext/soap/interop/
H A Dtest.utility.php36 return strcasecmp($f1,$f2) == 0;
76 return $ok || $e1 == $e2 || strcasecmp(trim($e1), trim($e2)) == 0;
H A Dclient_round2_interop.php312 (strcasecmp(get_class($soapval),"SoapParam") == 0 ||
313 strcasecmp(get_class($soapval),"SoapVar") == 0)) {
314 if (strcasecmp(get_class($soapval),"SoapParam") == 0)
324 (strcasecmp(get_class($soapval),"SoapParam") == 0 ||
325 strcasecmp(get_class($soapval),"SoapVar") == 0)) {
/PHP-7.1/scripts/dev/
H A Dfind_tested.php59 if (strcasecmp($extension_name, $method_record[EXTENSION_NAME]) == 0) {
96 if (strcasecmp($tested_function, $current_method_record[METHOD_NAME]) == 0) {
/PHP-7.1/ext/zip/lib/
H A Dzip_name_locate.c67 cmp = (flags & ZIP_FL_NOCASE) ? strcasecmp : strcmp; in _zip_name_locate()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg.h60 # undef strcasecmp
62 # define strcasecmp _stricmp macro
/PHP-7.1/ext/date/lib/
H A Dtimelib.h65 #if defined(_MSC_VER) && !defined(strcasecmp)
66 #define strcasecmp stricmp macro
/PHP-7.1/ext/mbstring/libmbfl/
H A Dconfigure.in31 AC_CHECK_FUNCS([strcasecmp strchr])

Completed in 37 milliseconds

12345