Searched refs:strpbrk (Results 1 – 21 of 21) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | strpbrk_error.phpt | 2 Test strpbrk() function : error conditions 5 /* Prototype : array strpbrk(string haystack, string char_list) 11 echo "*** Testing strpbrk() : error conditions ***\n"; 18 var_dump( strpbrk($haystack, $char_list, $extra_arg) ); 21 var_dump( strpbrk($haystack) ); 24 var_dump( strpbrk($haystack, '') ); 26 echo "\n-- Testing strpbrk() function with arrays --\n"; 27 var_dump( strpbrk($haystack, array('a', 'b', 'c') ) ); 28 var_dump( strpbrk(array('foo', 'bar'), 'b') ); 33 *** Testing strpbrk() : error conditions *** [all …]
|
H A D | strpbrk_basic.phpt | 2 Test strpbrk() function : basic functionality 11 echo "*** Testing strpbrk() : basic functionality ***\n"; 15 var_dump( strpbrk($text, 'mi') ); 16 var_dump( strpbrk($text, 'ZS') ); 17 var_dump( strpbrk($text, 'Z') ); 18 var_dump( strpbrk($text, 'H') ); 21 var_dump( strpbrk($text, 'foo') ); 24 var_dump( strpbrk($text, ' ') ); 26 var_dump( strpbrk(5, 5) ); 27 var_dump( strpbrk(5, "5") ); [all …]
|
H A D | bug60801.phpt | 2 Bug #60801 (strpbrk() mishandles NUL byte) 8 var_dump(strpbrk($haystack, 'ar')); 9 var_dump(strpbrk($haystack, "\x00")); 10 var_dump(strpbrk($haystack, $needle)); 11 var_dump(strpbrk('foobar', $needle)); 12 var_dump(strpbrk("\x00", $needle)); 13 var_dump(strpbrk('xyz', $needle)); 14 var_dump(strpbrk($haystack, 'xyz'));
|
/PHP-7.2/ext/xmlrpc/libxmlrpc/ |
H A D | acinclude.m4 | 8 strstr strpbrk strerror\
|
/PHP-7.2/ext/standard/ |
H A D | head.c | 96 …} else if (strpbrk(ZSTR_VAL(name), "=,; \t\r\n\013\014") != NULL) { /* man isspace for \013 and … in php_setcookie() 102 strpbrk(ZSTR_VAL(value), ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ in php_setcookie()
|
H A D | php_fopen_wrapper.c | 206 if (strpbrk(mode, "wa+")) { in php_stream_url_wrap_php() 215 if (strpbrk(mode, "wa+")) { in php_stream_url_wrap_php()
|
H A D | php_string.h | 94 PHP_FUNCTION(strpbrk);
|
H A D | ftp_fopen_wrapper.c | 109 if (strpbrk(stream->mode, "wa+")) { in php_stream_ftp_stream_close() 435 if (strpbrk(mode, "r+")) { in php_stream_url_wrap_ftp() 438 if (strpbrk(mode, "wa+")) { in php_stream_url_wrap_ftp()
|
H A D | mail.c | 406 while ((p = strpbrk(p, "\r\n"))) { in php_mail_log_crlf_to_spaces()
|
H A D | math.c | 1153 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
|
H A D | http_fopen_wrapper.c | 173 if (strpbrk(mode, "awx+")) { in php_stream_url_wrap_http_ex()
|
H A D | basic_functions.c | 2783 PHP_FE(strpbrk, arginfo_strpbrk)
|
H A D | string.c | 5704 PHP_FUNCTION(strpbrk) argument
|
/PHP-7.2/win32/ |
H A D | codepage.c | 323 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc() 330 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()
|
/PHP-7.2/ext/filter/ |
H A D | logical_filters.c | 411 if ((!dval && p - num > 1 && strpbrk(num, "123456789")) || !zend_finite(dval)) { in php_filter_float()
|
/PHP-7.2/ext/ftp/ |
H A D | ftp.c | 1274 if (strpbrk(cmd, "\r\n")) { in ftp_putcmd() 1283 if (strpbrk(args, "\r\n")) { in ftp_putcmd()
|
/PHP-7.2/main/ |
H A D | rfc1867.c | 759 boundary_end = strpbrk(boundary, ",;");
|
/PHP-7.2/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 976 if (strpbrk(modestr, "+w")) { in PHP_METHOD()
|
/PHP-7.2/ext/session/ |
H A D | session.c | 1573 if ((q = strpbrk(p, "/?\\"))) { in php_session_start() 1594 if (PS(id) && strpbrk(ZSTR_VAL(PS(id)), "\r\n\t <>'\"\\")) { in php_session_start()
|
/PHP-7.2/ext/iconv/ |
H A D | iconv.c | 2887 if ((to_charset = strpbrk(from_charset, "/.")) == NULL) { in php_iconv_stream_filter_factory_create()
|
/PHP-7.2/ext/imap/ |
H A D | php_imap.c | 4419 while ((p = strpbrk(p, "\\\""))) { in _php_rfc822_len()
|
Completed in 95 milliseconds