Home
last modified time | relevance | path

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

123456789

/php-src/ext/iconv/tests/
H A Dbug55146.phpt2 Bug #55146 (iconv_mime_decode_headers() skips some headers)
8 $headers = <<< HEADERS
12 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR));
14 $headers = <<< HEADERS
18 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)
7 $headers = 'From: "xyz" <xyz@xyz.com>
20 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR));
21 var_dump(iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_STRICT));
/php-src/ext/openssl/tests/
H A Dopenssl_pkcs7_encrypt_basic.phpt22 $headers = array("test@test", "testing openssl_pkcs7_encrypt()");
28 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $headers, 0, $cipher));
29 var_dump(openssl_pkcs7_encrypt($infile, $outfile, openssl_x509_read($single_cert), $headers, 0, $ci…
33 var_dump(openssl_pkcs7_encrypt($wrong, $outfile, $single_cert, $headers, 0, $cipher));
34 var_dump(openssl_pkcs7_encrypt($empty, $outfile, $single_cert, $headers, 0, $cipher));
35 var_dump(openssl_pkcs7_encrypt($infile, $empty, $single_cert, $headers, 0, $cipher));
36 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $wrong, $headers, 0, $cipher));
37 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $empty, $headers, 0, $cipher));
38 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $multi_certs, $headers, 0, $cipher));
39 …s7_encrypt($infile, $outfile, array_map('openssl_x509_read', $multi_certs), $headers, 0, $cipher));
[all …]
H A Dopenssl_cms_encrypt_basic.phpt20 $headers = array("test@test", "testing openssl_cms_encrypt()");
26 var_dump(openssl_cms_encrypt($infile, $outfile, $single_cert, $headers, cipher_algo: $cipher));
27 var_dump(openssl_cms_encrypt($infile, $outfile, openssl_x509_read($single_cert), $headers, cipher_a…
32 var_dump(openssl_cms_encrypt($wrong, $outfile, $single_cert, $headers, cipher_algo: $cipher));
33 var_dump(openssl_cms_encrypt($empty, $outfile, $single_cert, $headers, cipher_algo: $cipher));
34 var_dump(openssl_cms_encrypt($infile, $empty, $single_cert, $headers, cipher_algo: $cipher));
35 var_dump(openssl_cms_encrypt($infile, $outfile, $wrong, $headers, cipher_algo: $cipher));
36 var_dump(openssl_cms_encrypt($infile, $outfile, $empty, $headers, cipher_algo: $cipher));
37 var_dump(openssl_cms_encrypt($infile, $outfile, $multi_certs, $headers, cipher_algo: $cipher));
38 …ncrypt($infile, $outfile, array_map('openssl_x509_read', $multi_certs), $headers, cipher_algo: $ci…
[all …]
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));
25 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
26 var_dump(openssl_pkcs7_sign($empty, $outfile, $single_cert, $privkey, $headers));
27 var_dump(openssl_pkcs7_sign($infile, $empty, $single_cert, $privkey, $headers));
28 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
30 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $wrong, $headers));
H A Dopenssl_cms_sign_basic.phpt16 $headers = array("test@test", "testing openssl_cms_sign()");
21 var_dump(openssl_cms_sign($infile, $outfile, openssl_x509_read($single_cert), $privkey, $headers));
26 var_dump(openssl_cms_sign($infile, $outfile, $single_cert, $privkey, $headers));
29 var_dump(openssl_cms_sign($wrong, $outfile, $single_cert, $privkey, $headers));
30 var_dump(openssl_cms_sign($empty, $outfile, $single_cert, $privkey, $headers));
31 var_dump(openssl_cms_sign($infile, $empty, $single_cert, $privkey, $headers));
32 var_dump(openssl_cms_sign($infile, $outfile, $wrong, $privkey, $headers));
33 var_dump(openssl_cms_sign($infile, $outfile, $empty, $privkey, $headers));
34 var_dump(openssl_cms_sign($infile, $outfile, $single_cert, $wrong, $headers));
/php-src/ext/soap/tests/
H A Dcustom_content_type.phpt33 'user_agent' => 'Vincent JARDIN, test headers',
34 'trace' => true, /* record the headers before sending */
45 $headers = $client->__getLastRequestHeaders();
47 if (strpos($headers, 'Multipart/Related; action="misc-uri#foo"') === FALSE)
48 printf("Content-Type NOK %s" . PHP_EOL, $headers);
59 'user_agent' => 'Vincent JARDIN, test headers',
60 'trace' => true, /* record the headers before sending */
71 $headers = $client2->__getLastRequestHeaders();
73 if (strpos($headers, 'Content-Type: application/soap+xml; charset=utf-8; action="misc-uri#foo"') ==…
74 printf("Content-Type Default NOK %s" . PHP_EOL, $headers);
/php-src/ext/session/tests/
H A Dgh-16372.phpt2 GH-16372: Mention where headers were already sent if session_start fails
12 echo "Sent headers\n";
17 Sent headers
19 Warning: session_start(): Session cannot be started after headers have already been sent (sent from…
H A Dbug74514.phpt12 CLI ignores HTTP headers at all, i.e. does not output any HTTP headers,
17 'headers already sent' errors if they try to set new values.
/php-src/tests/basic/
H A Dheader_register_callback_after_output.phpt2 Call header_register_callback() after headers sent
5 echo "Send headers.\n";
9 Send headers.
H A Drfc1867_garbled_mime_headers.phpt2 rfc1867 garbled mime headers
19 Warning: PHP Request Startup: File Upload Mime headers garbled in %s
/php-src/ext/standard/tests/url/
H A Dget_headers_error_003.phpt16 $headers = get_headers("http://".PHP_CLI_SERVER_ADDRESS, 1, $context);
17 echo $headers["X-Request-Method"]."\n";
20 $headers = get_headers("http://".PHP_CLI_SERVER_ADDRESS, 1);
21 echo $headers["X-Request-Method"]."\n";
/php-src/ext/standard/tests/streams/
H A Dbug71245.phpt5 $headers = ['Host: okey.com'];
10 'header' => &$headers,
18 $headers = ["Host: bad.com"];
/php-src/ext/soap/tests/SoapClient/
H A DsetSoapHeaders-invalid-headers.phpt2 SoapClient::__soapCall with invalid headers
15 $headers = [
21 $client->__setSoapHeaders($headers);
H A DsoapCall-invalid-headers.phpt2 SoapClient::__soapCall with invalid headers
15 $headers = [
21 $client->__soapCall('function', ['arg'], ['options'], $headers);
/php-src/sapi/fpm/tests/
H A Dresponse.inc86 private $headers;
264 $headers = $this->getHeaders();
383 // check default headers
402 $headers = $this->getHeaders();
406 $header = $headers[$lcName];
430 $headers = $this->getHeaders();
431 if (isset($headers[$lcName])) {
439 * Get all headers.
450 return $this->headers;
454 $headers = [];
[all …]
/php-src/ext/standard/
H A Dphp_mail.h22 PHPAPI zend_string *php_mail_build_headers(HashTable *headers);
23 …il(const char *to, const char *subject, const char *message, const char *headers, const char *extr…
/php-src/ext/standard/tests/general_functions/
H A Dhead.phpt30 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
33 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…
42 Warning: Cannot modify header information - headers already sent by (output started at %s:%d) in %s…
/php-src/ext/standard/tests/mail/
H A Dmail_basic_win.phpt26 $headers = "from: {$from}";
27 return mail($to, $subject, $message, $headers);
34 $headers = "FRom: {$from}";
35 return mail($to, $subject, $message, $headers);
42 $headers = "from: {$from}";
44 return mail($to, $subject, $message, $headers, $parameters);
H A Dbug66535.phpt2 Bug #66535: Extra newline if add_x_header and no additional headers are used
8 echo "*** Testing mail() : send email without additional headers ***\n";
24 *** Testing mail() : send email without additional headers ***
H A Dmail_basic6.phpt25 // Calling mail() with all additional headers
35 // Calling mail() with all additional headers
46 // Calling mail() with all additional headers
57 // Calling mail() with all additional headers
67 // Calling mail() with all additional headers
77 // Calling mail() with all additional headers
87 // Calling mail() with all additional headers
97 // Calling mail() with all additional headers
107 // Calling mail() with all additional headers
117 // Calling mail() with all additional headers
[all …]
/php-src/win32/
H A Dsendmail.c197 if (headers) { in TSendMail()
239 pos1 = headers + (pos1 - lookup) + 5; in TSendMail()
250 if (headers) { in TSendMail()
265 if (headers) { in TSendMail()
282 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-src/sapi/cli/tests/
H A Dbug64878.phpt13 $headers = get_headers('http://' . PHP_CLI_SERVER_ADDRESS);
14 echo count(array_filter($headers, function ($value) {
/php-src/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";
48 $header = current($headers);
61 ."\n\tReceived: ".current($headers)."\n";
66 while (next($headers) !== FALSE);

Completed in 75 milliseconds

123456789