/PHP-8.0/ext/standard/tests/strings/ |
H A D | strpbrk_basic.phpt | 2 Test strpbrk() function : basic functionality 5 echo "*** Testing strpbrk() : basic functionality ***\n"; 9 var_dump( strpbrk($text, 'mi') ); 10 var_dump( strpbrk($text, 'ZS') ); 11 var_dump( strpbrk($text, 'Z') ); 12 var_dump( strpbrk($text, 'H') ); 15 var_dump( strpbrk($text, 'foo') ); 18 var_dump( strpbrk($text, ' ') ); 20 var_dump( strpbrk(5, 5) ); 21 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'));
|
H A D | strpbrk_error.phpt | 2 Test strpbrk() function : error conditions 7 echo "-- Testing strpbrk() function with empty second argument --\n"; 9 strpbrk($haystack, ''); 16 -- Testing strpbrk() function with empty second argument -- 17 strpbrk(): Argument #2 ($characters) must be a non-empty string
|
/PHP-8.0/ext/standard/ |
H A D | head.c | 93 if (strpbrk(ZSTR_VAL(name), "=,; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ in php_setcookie() 98 strpbrk(ZSTR_VAL(value), ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ in php_setcookie() 103 …if (path && strpbrk(ZSTR_VAL(path), ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \0… in php_setcookie() 108 …if (domain && strpbrk(ZSTR_VAL(domain), ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 an… in php_setcookie()
|
H A D | ftp_fopen_wrapper.c | 103 if (strpbrk(stream->mode, "wa+")) { in php_stream_ftp_stream_close() 426 if (strpbrk(mode, "r+")) { in php_stream_url_wrap_ftp() 429 if (strpbrk(mode, "wa+")) { in php_stream_url_wrap_ftp()
|
H A D | mail.c | 359 while ((p = strpbrk(p, "\r\n"))) { in php_mail_log_crlf_to_spaces()
|
H A D | math.c | 1049 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
|
H A D | http_fopen_wrapper.c | 181 if (strpbrk(mode, "awx+")) { in php_stream_url_wrap_http_ex()
|
H A D | basic_functions.stub.php | 684 function strpbrk(string $string, string $characters): string|false {} function
|
H A D | basic_functions_arginfo.h | 2512 ZEND_FUNCTION(strpbrk); 3149 ZEND_FE(strpbrk, arginfo_strpbrk)
|
H A D | string.c | 5836 PHP_FUNCTION(strpbrk) argument
|
/PHP-8.0/win32/ |
H A D | sendmail.c | 349 while ((p = strpbrk(p, ",\"\\")) != NULL) { in find_address() 1019 while ((p1 = strpbrk(p1, "<\"\\")) != NULL) { in get_angle_addr() 1035 while ((p2 = strpbrk(p2, ">\"\\")) != NULL) { in get_angle_addr()
|
H A D | codepage.c | 354 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc() 361 idx = strpbrk(start, "|"); in php_win32_cp_get_by_enc()
|
/PHP-8.0/main/streams/ |
H A D | memory.c | 276 if (strpbrk(mode, "a")) { in php_stream_mode_from_str() 278 } else if (strpbrk(mode, "w+")) { in php_stream_mode_from_str()
|
/PHP-8.0/ext/session/ |
H A D | session.c | 1272 ZEND_ASSERT(strpbrk(PS(session_name), "=,; \t\r\n\013\014") == NULL); in php_session_remove_cookie() 1320 …if (strpbrk(PS(session_name), "=,; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 … in php_session_send_cookie() 1585 if ((q = strpbrk(p, "/?\\"))) { in php_session_start() 1606 if (PS(id) && strpbrk(ZSTR_VAL(PS(id)), "\r\n\t <>'\"\\")) { in php_session_start()
|
/PHP-8.0/ext/filter/ |
H A D | logical_filters.c | 446 if ((!dval && p - num > 1 && strpbrk(num, "123456789")) || !zend_finite(dval)) { in php_filter_float()
|
/PHP-8.0/ext/ftp/ |
H A D | ftp.c | 1245 if (strpbrk(cmd, "\r\n")) { in ftp_putcmd() 1254 if (strpbrk(args, "\r\n")) { in ftp_putcmd()
|
/PHP-8.0/main/ |
H A D | main.c | 542 || strpbrk(ZSTR_VAL(new_value), "\r\n")) { in PHP_INI_MH() 562 || strpbrk(ZSTR_VAL(new_value), "\r\n")) { in PHP_INI_MH()
|
H A D | rfc1867.c | 748 boundary_end = strpbrk(boundary, ",;");
|
/PHP-8.0/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 1019 if (strpbrk(modestr, "+w")) { in PHP_METHOD()
|
/PHP-8.0/sapi/cgi/ |
H A D | cgi_main.c | 835 while ((ptr = strpbrk(ptr, "\\/")) != NULL) {
|
/PHP-8.0/ext/iconv/ |
H A D | iconv.c | 2595 if ((to_charset = strpbrk(from_charset, "/.")) == NULL) { in php_iconv_stream_filter_factory_create()
|
/PHP-8.0/ext/imap/ |
H A D | php_imap.c | 3074 while ((p = strpbrk(p, "\r\n")) != NULL) { in header_injection() 4044 while ((p = strpbrk(p, "\\\""))) { in _php_rfc822_len()
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 7368 strpbrk(p,"^$*+?.([%-")==NULL)){
|