Home
last modified time | relevance | path

Searched refs:strstr (Results 26 – 50 of 135) sorted by last modified time

123456

/PHP-7.4/ext/pdo_odbc/
H A Dodbc_driver.c447 if (dbh->username && *dbh->username && !strstr(dbh->data_source, "uid") in pdo_odbc_handle_factory()
448 && !strstr(dbh->data_source, "UID")) { in pdo_odbc_handle_factory()
/PHP-7.4/ext/soap/
H A Dphp_http.c937 tmp = strstr(http_version," "); in make_http_soap_request()
942 tmp = strstr(tmp," "); in make_http_soap_request()
981 eqpos = strstr(cookie, "="); in make_http_soap_request()
982 sempos = strstr(cookie, ";"); in make_http_soap_request()
1004 sempos = strstr(options, ";"); in make_http_soap_request()
1005 if (strstr(options,"path=") == options) { in make_http_soap_request()
1008 } else if (strstr(options,"domain=") == options) { in make_http_soap_request()
1011 } else if (strstr(options,"secure") == options) { in make_http_soap_request()
1167 strstr(auth, "Digest") == auth && in make_http_soap_request()
1245 pos = strstr(content_type,";"); in make_http_soap_request()
/PHP-7.4/ext/exif/
H A Dexif.c4562 if (strstr(sections_str, tmp)) { in PHP_FUNCTION()
/PHP-7.4/Zend/
H A Dzend_exceptions.c710 …e_type_error || Z_OBJCE_P(exception) == zend_ce_argument_count_error) && strstr(ZSTR_VAL(message),… in ZEND_METHOD()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c2794 PHP_FE(strstr, arginfo_strstr)
2847 PHP_FALIAS(strchr, strstr, arginfo_strstr)
H A Dphp_fopen_wrapper.c350 p = strstr(pathdup, "/resource="); in php_stream_url_wrap_php()
H A Dphp_string.h43 PHP_FUNCTION(strstr);
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_utils.c119 if (strstr(str, "#") != NULL) in phpdbg_is_class_method()
122 if (strstr(str, " ") != NULL) in phpdbg_is_class_method()
125 sep = strstr(str, "::"); in phpdbg_is_class_method()
H A Dphpdbg_print.c408 if (strstr(function, "::") == NULL) { in phpdbg_print_opcodes()
/PHP-7.4/ext/iconv/
H A Diconv.c403 char *p = strstr(get_output_encoding(), "//"); in php_iconv_output_handler()
/PHP-7.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c500 for (sptr = str; (ptr = strstr(sptr, "${")) != NULL;) { in varexpand()
H A Dreadcdf.c123 found = (strstr(vbuf_lower, pattern_lower) != NULL); in cdf_app_to_mime()
/PHP-7.4/tests/strings/
H A D001.phpt27 echo "Testing strstr: ";
29 $found1 = strstr($test, 32);
30 $found2 = strstr($test, "a ");
210 Testing strstr: passed
/PHP-7.4/ext/zlib/
H A Dzlib.c110 if (strstr(Z_STRVAL_P(enc), "gzip")) { in php_zlib_output_encoding()
112 } else if (strstr(Z_STRVAL_P(enc), "deflate")) { in php_zlib_output_encoding()
/PHP-7.4/main/
H A DSAPI.c374 if (*charset && strncmp(*mimetype, "text/", 5) == 0 && strstr(*mimetype, "charset=") == NULL) { in sapi_apply_default_charset()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrstr.phpt2 Test strstr() function
17 var_dump( strstr("tEst", "test") );
18 var_dump( strstr("teSt", "test") );
19 var_dump( @strstr("", "") );
20 var_dump( @strstr("a", "") );
21 var_dump( @strstr("", "a") );
111 var_dump( strstr("", NULL) );
112 var_dump( strstr(NULL, NULL) );
113 var_dump( strstr("a", NULL) );
137 var_dump( strstr($str, "0") );
[all …]
H A Dstristr_basic.phpt6 Description: Case-insensitive strstr().
H A Dstristr_error.phpt7 Description: Case-insensitive strstr()
H A Dstristr_variation2.phpt7 Description: Case-insensitive strstr().
/PHP-7.4/ext/session/tests/
H A Dsession_regenerate_id_cookie.phpt38 if (strstr($h, $target) !== FALSE) {
/PHP-7.4/ext/readline/
H A Dreadline_cli.c183 char *prompt_end = strstr(prompt_spec + 1, "`"); in cli_get_prompt()
530 class_name_end = strstr(text, "::"); in cli_completion_generator()
629 char *param = strstr(&line[1], "="); in readline_shell_run()
/PHP-7.4/ext/mbstring/tests/
H A Dmb_get_info.phpt51 ["strstr"]=>
115 ["strstr"]=>
141 ["strstr"]=>
/PHP-7.4/ext/imap/tests/
H A Dbug63126.phpt16 if (strstr($err, 'GSSAPI') || strstr($err, 'Kerberos')) {
38 if (strstr($err, 'GSSAPI') || strstr($err, 'Kerberos')) {
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_log.c308 if (!strstr(h->header, format)) { in fpm_log_write()
H A Dfpm_conf.c187 while (*value && (token = strstr(*value, "$pool"))) { in fpm_conf_expand_pool_name()
714 tmp = strstr(*path, "$prefix"); in fpm_evaluate_full_path()

Completed in 142 milliseconds

123456