Home
last modified time | relevance | path

Searched refs:strcmp (Results 51 – 75 of 157) sorted by path

1234567

/PHP-7.4/ext/odbc/tests/
H A Dbug60616.phpt44 if (strcmp($char_col, $euc_jp_check) == 0 && strcmp($varchar_col, $euc_jp) == 0 &&
45 strcmp($text_col, $euc_jp) == 0) {
52 if (strcmp($char_col, $ascii_check) == 0 && strcmp($varchar_col, $ascii) == 0 &&
53 strcmp($text_col, $ascii) == 0) {
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c2514 if (!strcmp(element1->name, ACCELERATOR_PRODUCT_NAME )) { in accelerator_remove_cb()
2559 if (strcmp(sapi_module.name, *sapi_name) == 0) { in accel_find_sapi()
2564 strcmp(sapi_module.name, "cli") == 0 in accel_find_sapi()
2565 || strcmp(sapi_module.name, "phpdbg") == 0)) { in accel_find_sapi()
2896 (strcmp(sapi_module.name, "cli") == 0 || in accel_startup()
2897 strcmp(sapi_module.name, "cli-server") == 0 || in accel_startup()
2898 strcmp(sapi_module.name, "cgi-fcgi") == 0 || in accel_startup()
2899 strcmp(sapi_module.name, "fpm-fcgi") == 0)) { in accel_startup()
2908 strcmp(sapi_module.name, "cli") == 0) { in accel_startup()
H A Dconfig.m485 if (strcmp(shm, "bye") != 0) {
137 if (strcmp(shm, "bye") != 0) {
207 if (strcmp(shm, "bye") != 0) {
H A Dzend_accelerator_debug.c46 strcmp(ZCG(accel_directives).error_log, "stderr") == 0) { in zend_accel_error()
H A Dzend_shared_alloc.c178 if (strcmp(model, he->name) == 0) { in zend_shared_alloc_startup()
/PHP-7.4/ext/openssl/
H A Dopenssl.c1201 if (str != NULL && strcmp(str, "no") == 0) { in php_openssl_parse_config()
3204 if (strcmp("_default", type + len) != 0) { in php_openssl_make_REQ()
H A Dxp_ssl.c446 if (len && strcmp((const char *)&cert_name[len-1], ".") == 0) { in php_openssl_matches_san_list()
781 } else if (!strcmp(line, "-----BEGIN CERTIFICATE-----\n") || in php_openssl_load_stream_cafile()
782 !strcmp(line, "-----BEGIN CERTIFICATE-----\r\n") in php_openssl_load_stream_cafile()
799 } else if (!strcmp(line, "-----END CERTIFICATE-----") || in php_openssl_load_stream_cafile()
800 !strcmp(line, "-----END CERTIFICATE-----\n") || in php_openssl_load_stream_cafile()
801 !strcmp(line, "-----END CERTIFICATE-----\r\n") in php_openssl_load_stream_cafile()
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_x509_export_basic.phpt25 var_dump(strcmp($output, $a));
26 var_dump(strcmp($output, $output2));
27 var_dump(strcmp($output, $output3));
28 var_dump(strcmp($output, $output4)); // different
29 var_dump(strcmp($output, $output5)); // different
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c3269 if (PRIV(strcmp)(skip_arg, (PCRE2_SPTR)current[2]) == 0) in do_search_mark()
H A Dpcre2_match.c5924 PRIV(strcmp)(Fecode + 2, mb->verb_skip_ptr) == 0) in match()
H A Dpcre2_string_utils.c102 PRIV(strcmp)(PCRE2_SPTR str1, PCRE2_SPTR str2) in PRIV() argument
H A Dpcre2_substring.c492 int c = PRIV(strcmp)(stringname, entry + IMM2_SIZE); in pcre2_substring_nametable_scan()
502 if (PRIV(strcmp)(stringname, (first - entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
507 if (PRIV(strcmp)(stringname, (last + entrysize + IMM2_SIZE)) != 0) break; in pcre2_substring_nametable_scan()
/PHP-7.4/ext/pcre/
H A Dphp_pcre.c274 pcre_globals->per_request_cache = strcmp(sapi_module.name, "cli") == 0; in PHP_GINIT_FUNCTION()
/PHP-7.4/ext/pdo/
H A Dpdo_sql_parser.re392 …if (!strcmp(name, "?") || (p = zend_hash_str_find_ptr(stmt->bound_param_map, name, plc->len)) == N…
H A Dpdo_stmt.c2185 if (strcmp(Z_STRVAL_P(member), "queryString") == 0) { in dbstmt_prop_write()
2201 if (strcmp(Z_STRVAL_P(member), "queryString") == 0) { in dbstmt_prop_delete()
2477 if (strcmp(Z_STRVAL_P(member), "queryString") == 0) { in row_prop_read()
H A Dphp_pdo_error.h34 #define PDO_HANDLE_DBH_ERR() if (strcmp(dbh->error_code, PDO_ERR_NONE)) { pdo_handle_error(dbh, …
35 #define PDO_HANDLE_STMT_ERR() if (strcmp(stmt->error_code, PDO_ERR_NONE)) { pdo_handle_error(stmt…
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c508 if(strcmp(vars[5].optval,tdsver[i].key) == 0) { in pdo_dblib_handle_factory()
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c835 if (vars[2].optval && !strcmp(".", vars[2].optval)) {
837 if (vars[2].optval && !strcmp("localhost", vars[2].optval)) {
/PHP-7.4/ext/pdo_odbc/
H A Dpdo_odbc.c116 if (strcasecmp(pooling_val, "strict") == 0 || strcmp(pooling_val, "1") == 0) { in PHP_INI_END()
/PHP-7.4/ext/pdo_odbc/tests/
H A Dlong_columns.phpt82 if (strcmp($expect, $row[1])) {
H A Dmax_columns.phpt35 if (strcmp($expect, $row[1])) {
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_statement.c201 if (sqlstate && !strcmp(sqlstate, "42P05")) { in pgsql_stmt_execute()
/PHP-7.4/ext/pgsql/
H A Dpgsql.c5671 if (!strcmp(type_name, "bool")|| !strcmp(type_name, "boolean"))
5677 if (!strcmp(type_name, "int2") || !strcmp(type_name, "smallint"))
5679 if (!strcmp(type_name, "int4") || !strcmp(type_name, "integer"))
5681 if (!strcmp(type_name, "int8") || !strcmp(type_name, "bigint"))
5684 if (!strcmp(type_name, "float4") || !strcmp(type_name, "real"))
5686 if (!strcmp(type_name, "float8") || !strcmp(type_name, "double precision"))
5695 if (!strcmp(type_name, "bpchar") || !strcmp(type_name, "character"))
5926 if (!strcmp(Z_STRVAL_P(val), "t") || !strcmp(Z_STRVAL_P(val), "T") ||
5927 !strcmp(Z_STRVAL_P(val), "y") || !strcmp(Z_STRVAL_P(val), "Y") ||
5929 !strcmp(Z_STRVAL_P(val), "yes") || !strcmp(Z_STRVAL_P(val), "Yes") ||
[all …]
/PHP-7.4/ext/phar/
H A Dphar.c2296 if (!strcmp(fname, "[no active file]")) { in phar_open_executed_filename()
H A Dphar_object.c574 && (!strcmp(SG(request_info).request_method, "GET") in PHP_METHOD()
575 || !strcmp(SG(request_info).request_method, "POST") in PHP_METHOD()
576 || !strcmp(SG(request_info).request_method, "DELETE") in PHP_METHOD()
577 || !strcmp(SG(request_info).request_method, "HEAD") in PHP_METHOD()
578 || !strcmp(SG(request_info).request_method, "OPTIONS") in PHP_METHOD()
579 || !strcmp(SG(request_info).request_method, "PATCH") in PHP_METHOD()
580 || !strcmp(SG(request_info).request_method, "PUT") in PHP_METHOD()

Completed in 151 milliseconds

1234567