Home
last modified time | relevance | path

Searched refs:strstr (Results 1 – 25 of 135) sorted by relevance

123456

/PHP-5.3/ext/standard/tests/strings/
H A Dstrstr2.phpt2 strstr() - New parameter: before_needle
7 var_dump(strstr($email, '@'));
8 var_dump(strstr($email, '@', 1));
10 var_dump(strstr($email, '@'));
11 var_dump(strstr($email, '@', 1));
13 var_dump(strstr($email, '@'));
14 var_dump(strstr($email, '@', 1));
16 var_dump(strstr($email, '@'));
19 var_dump(strstr($email, 'e'));
21 var_dump(strstr($email, 'E'));
[all …]
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 Dstrings001.phpt2 Test whether strstr() and strrchr() are binary safe.
7 var_dump(strstr($s, "nic"));
H A Dstristr_basic.phpt6 Description: Case-insensitive strstr().
H A Dstristr_error.phpt7 Description: Case-insensitive strstr()
/PHP-5.3/ext/imap/tests/
H A Dbug63126.phpt16 if (strstr($err, 'GSSAPI') || strstr($err, 'Kerberos')) {
38 if (strstr($err, 'GSSAPI') || strstr($err, 'Kerberos')) {
/PHP-5.3/ext/fileinfo/libmagic/
H A Dreadcdf.c119 if (strstr(vbuf, "Word"))
121 else if (strstr(vbuf, "Excel"))
123 else if (strstr(vbuf, "Powerpoint"))
125 else if (strstr(vbuf,
302 if (strstr(name, "WordDocument") == 0) {
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_only.phpt76 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
98 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
H A Dmysqli_debug_append.phpt62 if (!strstr($trace, 'mysqli_debug.phpt test line'))
73 if (!strstr(file_get_contents($trace_file), $trace))
H A Dmysqli_debug_mysqlnd_control_string.phpt66 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
156 if (count($test_functions['simple']) < 2 && !strstr($func, '::'))
158 else if (count($test_functions['doubledot']) < 2 && strstr($func, '::'))
/PHP-5.3/win32/
H A Dsendmail.c263 (pos1 = strstr(headers_lc, "from:")) && in TSendMail()
270 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in TSendMail()
476 …else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '… in SendText()
481 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText()
531 if (pos1 = strstr(headers_lc, "bcc:")) { in SendText()
536 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText()
705 if (!xheaders || !strstr(headers_lc, "date:")) { in PostHeader()
713 if (!headers_lc || !strstr(headers_lc, "from:")) { in PostHeader()
723 …if ((headers_lc && (!strstr(headers_lc, "\r\nto:") && (strncmp(headers_lc, "to:", 3) != 0))) || !h… in PostHeader()
/PHP-5.3/ext/mbstring/tests/
H A Dmb_get_info.phpt50 ["strstr"]=>
114 ["strstr"]=>
140 ["strstr"]=>
/PHP-5.3/tests/strings/
H A D001.phpt27 echo "Testing strstr: ";
29 $found1 = strstr($test, 32);
30 $found2 = strstr($test, "a ");
196 Testing strstr: passed
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dacinclude.m48 strstr strpbrk strerror\
H A Dxml_to_soap.c64 return(strstr(soap_type, "SOAP-ENC:") || strstr(soap_type, "xsd:")) ? 1 : 0; in is_soap_type()
325 strstr(el->name, "esponse") ? xmlrpc_request_response : xmlrpc_request_call; in xml_element_to_SOAP_REQUEST_worker()
/PHP-5.3/scripts/dev/
H A Dextern_c.php29 if (strstr($line,"(")) {
/PHP-5.3/ext/posix/tests/
H A Dposix_errno_variation2.phpt22 } while (strstr($pid, $result));
/PHP-5.3/ext/standard/
H A Dhttp_fopen_wrapper.c432 if ((s = strstr(tmp_c, "content-length:"))) { in php_stream_url_wrap_http_ex()
443 if ((s = strstr(tmp_c, "content-type:"))) { in php_stream_url_wrap_http_ex()
461 if ((s = strstr(tmp, "user-agent:")) && in php_stream_url_wrap_http_ex()
466 if ((s = strstr(tmp, "host:")) && in php_stream_url_wrap_http_ex()
471 if ((s = strstr(tmp, "from:")) && in php_stream_url_wrap_http_ex()
476 if ((s = strstr(tmp, "authorization:")) && in php_stream_url_wrap_http_ex()
481 if ((s = strstr(tmp, "content-length:")) && in php_stream_url_wrap_http_ex()
486 if ((s = strstr(tmp, "content-type:")) && in php_stream_url_wrap_http_ex()
492 if (use_proxy && use_ssl && (s = strstr(tmp, "proxy-authorization:")) && in php_stream_url_wrap_http_ex()
/PHP-5.3/ext/soap/
H A Dphp_http.c846 tmp = strstr(http_version," "); in make_http_soap_request()
851 tmp = strstr(tmp," "); in make_http_soap_request()
874 cookie_itt = strstr(http_headers,"Set-Cookie: "); in make_http_soap_request()
887 end_pos = strstr(cookie_itt,"\r\n"); in make_http_soap_request()
890 eqpos = strstr(cookie, "="); in make_http_soap_request()
891 sempos = strstr(cookie, ";"); in make_http_soap_request()
914 sempos = strstr(options, ";"); in make_http_soap_request()
915 if (strstr(options,"path=") == options) { in make_http_soap_request()
921 } else if (strstr(options,"secure") == options) { in make_http_soap_request()
1069 strstr(auth, "Digest") == auth && in make_http_soap_request()
[all …]
/PHP-5.3/sapi/cgi/tests/
H A Dinclude.inc12 if (strstr($version, "(cli)")) {
/PHP-5.3/ext/soap/interop/
H A Dclient_round2_params.php385 $strstr = (object)array( variable
395 array('inputStruct' => $strstr));
409 )),$strstr);
/PHP-5.3/sapi/apache_hooks/
H A Dsapi_apache.c97 if( (tmp = strstr(handler->name, "::")) != NULL && *(tmp+2) != '\0' ) { in apache_php_module_hook()
/PHP-5.3/ext/standard/tests/file/
H A Dfgetcsv_variation21.phpt28 if ( strstr($file_modes[$mode_counter], "r") ) {
42 if ( strstr($file_modes[$mode_counter], "r" ) ) {
H A Dfgetcsv_variation14.phpt26 if ( strstr($file_modes[$mode_counter], "r") ) {
40 if ( strstr($file_modes[$mode_counter], "r" ) ) {
/PHP-5.3/ext/phar/
H A Dfunc_interceptors.c45 if (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://")) { in PHAR_FUNC()
120 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC()
250 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC()
346 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC()
617 if (!IS_ABSOLUTE_PATH(filename, filename_length) && !strstr(filename, "://")) { in phar_file_stat()
911 if (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://")) { in PharFileFunction()
978 if (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://")) { in PHAR_FUNC()

Completed in 62 milliseconds

123456