Home
last modified time | relevance | path

Searched refs:headers (Results 1 – 25 of 166) sorted by relevance

1234567

/PHP-7.4/ext/iconv/tests/
H A Dbug55146.phpt2 Bug #55146 (iconv_mime_decode_headers() skips some headers)
10 $headers = <<< HEADERS
14 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR));
16 $headers = <<< HEADERS
20 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_STRICT));
H A Dbug52941.phpt2 Bug #52941 (The 'iconv_mime_decode_headers' function is skipping headers)
7 $headers = <<<HEADERS
15 $decoded = iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR, 'UTF-8');
23 $decoded = iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR | ICONV_MIME_DEC…
H A Dbug63839.phpt2 Bug #63839 (iconv_mime_decode_headers function is skipping headers)
9 $headers = 'From: "xyz" <xyz@xyz.com>
22 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR));
23 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_STRICT));
H A Dbug77147.phpt12 $headers = iconv_mime_decode_headers($string, ICONV_MIME_DECODE_CONTINUE_ON_ERROR);
13 var_dump($headers);
/PHP-7.4/ext/soap/tests/
H A Dcustom_content_type.phpt31 'user_agent' => 'Vincent JARDIN, test headers',
32 'trace' => true, /* record the headers before sending */
43 $headers = $client->__getLastRequestHeaders();
45 if (strpos($headers, 'Multipart/Related; action="misc-uri#foo"') === FALSE)
46 printf("Content-Type NOK %s" . PHP_EOL, $headers);
57 'user_agent' => 'Vincent JARDIN, test headers',
58 'trace' => true, /* record the headers before sending */
69 $headers = $client2->__getLastRequestHeaders();
71 if (strpos($headers, 'Content-Type: application/soap+xml; charset=utf-8; action="misc-uri#foo"') ==…
72 printf("Content-Type Default NOK %s" . PHP_EOL, $headers);
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pkcs7_encrypt_basic.phpt19 $headers = array("test@test", "testing openssl_pkcs7_encrypt()");
24 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $headers));
25 var_dump(openssl_pkcs7_encrypt($infile, $outfile, openssl_x509_read($single_cert), $headers));
30 var_dump(openssl_pkcs7_encrypt($wrong, $outfile, $single_cert, $headers));
31 var_dump(openssl_pkcs7_encrypt($empty, $outfile, $single_cert, $headers));
32 var_dump(openssl_pkcs7_encrypt($infile, $empty, $single_cert, $headers));
33 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $wrong, $headers));
34 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $empty, $headers));
36 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $multi_certs, $headers));
37 …openssl_pkcs7_encrypt($infile, $outfile, array_map('openssl_x509_read', $multi_certs) , $headers));
H A Dopenssl_pkcs7_sign_basic.phpt16 $headers = array("test@test", "testing openssl_pkcs7_sign()");
21 var_dump(openssl_pkcs7_sign($infile, $outfile, openssl_x509_read($single_cert), $privkey, $headers)…
22 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $headers));
26 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
27 var_dump(openssl_pkcs7_sign($empty, $outfile, $single_cert, $privkey, $headers));
28 var_dump(openssl_pkcs7_sign($infile, $empty, $single_cert, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
30 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
32 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $wrong, $headers));
/PHP-7.4/ext/standard/tests/url/
H A Dget_headers_error_003.phpt18 $headers = get_headers("http://".PHP_CLI_SERVER_ADDRESS, 1, $context);
19 echo $headers["X-Request-Method"]."\n";
22 $headers = get_headers("http://".PHP_CLI_SERVER_ADDRESS, 1);
23 echo $headers["X-Request-Method"]."\n";
/PHP-7.4/ext/standard/tests/streams/
H A Dbug71245.phpt5 $headers = ['Host: okey.com'];
10 'header' => &$headers,
18 $headers = ["Host: bad.com"];
/PHP-7.4/ext/standard/tests/network/
H A Dsetcookie.phpt40 $headers = headers_list();
41 if (($i = count($expected)) > count($headers))
43 echo "Fewer headers are being sent than expected - aborting";
49 if (strncmp(current($headers), 'Set-Cookie:', 11) !== 0)
54 if (current($headers) === current($expected))
62 ."\n\tReceived: ".current($headers)."\n";
67 while (next($headers) !== FALSE);
/PHP-7.4/sapi/fpm/tests/
H A Dresponse.inc32 private $headers;
203 // check default headers
219 $headers = $this->getHeaders();
220 if (!isset($headers[$lcName])) {
223 $header = $headers[$lcName];
248 if (is_array($this->headers)) {
249 return $this->headers;
253 $headers = [];
259 $headers[strtolower(substr($headerRow, 0, $colonPosition))] = trim(
264 return ($this->headers = $headers);
/PHP-7.4/ext/standard/tests/general_functions/
H A Dhead.phpt36 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
39 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
45 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
48 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
/PHP-7.4/ext/standard/
H A Dmail.c180 PHPAPI zend_string *php_mail_build_headers(zval *headers) in php_mail_build_headers() argument
187 ZEND_ASSERT(Z_TYPE_P(headers) == IS_ARRAY); in php_mail_build_headers()
285 zval *headers = NULL; in PHP_FUNCTION() local
297 Z_PARAM_ZVAL(headers) in PHP_FUNCTION()
305 if (headers) { in PHP_FUNCTION()
306 switch(Z_TYPE_P(headers)) { in PHP_FUNCTION()
308 tmp_headers = zend_string_init(Z_STRVAL_P(headers), Z_STRLEN_P(headers), 0); in PHP_FUNCTION()
314 str_headers = php_mail_build_headers(headers); in PHP_FUNCTION()
474 char *hdr = headers; in php_mail()
480 if (hdr != headers) { \ in php_mail()
[all …]
H A Dphp_mail.h27 PHPAPI zend_string *php_mail_build_headers(zval *headers);
28 PHPAPI extern int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd);
/PHP-7.4/win32/
H A Dsendmail.c198 if (headers) { in TSendMail()
240 pos1 = headers + (pos1 - lookup) + 5; in TSendMail()
251 if (headers) { in TSendMail()
266 if (headers) { in TSendMail()
283 if (headers) { in TSendMail()
488 pos1 = headers + (pos1 - headers_lc) + 3; in SendText()
548 else if (headers) { in SendText()
553 pos1 = headers + (pos1 - headers_lc) + 4; in SendText()
604 memcpy(stripped_header, headers, pos1 - headers - 4); in SendText()
617 if (headers && !stripped_header) { in SendText()
[all …]
/PHP-7.4/tests/basic/
H A Drfc1867_garbled_mime_headers.phpt2 rfc1867 garbled mime headers
19 Warning: File Upload Mime headers garbled in %s
/PHP-7.4/sapi/cli/tests/
H A Dbug64878.phpt13 $headers = get_headers('http://' . PHP_CLI_SERVER_ADDRESS);
14 echo count(array_filter($headers, function ($value) {
/PHP-7.4/ext/session/tests/
H A Dbug74514.phpt10 CLI ignores HTTP headers at all, i.e. does not output any HTTP headers,
15 'headers already sent' errors if they try to set new values.
H A Dsession_regenerate_id_cookie.phpt35 $headers = headers_list();
37 foreach ($headers as $h) {
43 var_dump($headers);
/PHP-7.4/ext/standard/tests/mail/
H A Dmail_basic6.phpt31 // Calling mail() with all additional headers
41 // Calling mail() with all additional headers
52 // Calling mail() with all additional headers
63 // Calling mail() with all additional headers
73 // Calling mail() with all additional headers
83 // Calling mail() with all additional headers
93 // Calling mail() with all additional headers
103 // Calling mail() with all additional headers
113 // Calling mail() with all additional headers
123 // Calling mail() with all additional headers
[all …]
H A Dbug66535.phpt2 Bug #66535: Extra newline if add_x_header and no additional headers are used
19 echo "*** Testing mail() : send email without additional headers ***\n";
36 *** Testing mail() : send email without additional headers ***
/PHP-7.4/ext/snmp/
H A Dconfig.w3212 WARNING("snmp not enabled; libraries and headers not found");
15 WARNING("snmp not enabled; libraries and headers not found");
/PHP-7.4/ext/mbstring/tests/
H A Dbug52681.phpt18 $headers = 'MIME-Version: 2.0';
20 mb_send_mail($to, mb_language(), "test", $headers);
/PHP-7.4/ext/pdo/
H A DMakefile.frag17 install-pdo-headers:
35 install: $(all_targets) $(install_targets) install-pdo-headers
/PHP-7.4/ext/curl/tests/
H A Dcurl_writeheader_callback.phpt7 … that the headers are sent to the callback specified for CURLOPT_HEADERFUNCTION. Different test se…

Completed in 68 milliseconds

1234567