Home
last modified time | relevance | path

Searched refs:headers (Results 126 – 150 of 198) sorted by path

12345678

/php-src/ext/standard/tests/mail/
H A Dbug69115.phpt10 /* Just ensure it doesn't crash when trimming headers */
H A Dbug69874.phpt8 echo "*** Testing mail() : send email without additional headers ***\n";
24 *** Testing mail() : send email without additional headers ***
H A Dbug69874_2.phpt8 echo "*** Testing mail() : send email without additional headers ***\n";
24 *** Testing mail() : send email without additional headers ***
H A Dbug72964.phpt2 Bug #72964 (White space not unfolded for CC/Bcc headers)
24 $headers = "From: {$from}\r\n"
28 $res = mail($to, $subject, $message, $headers);
H A Dbug80706.phpt2 Bug #80706 (Headers after Bcc headers may be ignored)
24 $headers = "From: {$from}\r\n"
28 $res = mail($to, $subject, $message, $headers);
H A Dbug80751.phpt30 $headers = "From: {$fromLine}\r\n"
34 $res = mail($toLine, $subject, $message, $headers);
H A Dgh10990.phpt13 $headers = ['From' => &$from];
14 var_dump(mail('test@example.com', 'Test', 'Test', $headers));
H A Dmail_basic.phpt20 // Calling mail() with all 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 …]
H A Dmail_basic7.phpt31 // Calling mail() with all additional headers
234 ValueError: The additional headers cannot contain the "To" header
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 Dmail_log.phpt20 $headers = "X-Test: 1";
25 var_dump(mail($to, $subject, $message, $headers));
H A Dmail_util.inc163 $headers = [];
177 $headers[$key] = $val;
179 return $headers;
/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);
/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/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/tidy/
H A Dconfig.w3233 WARNING("tidy not enabled; libraries and headers not found");
/php-src/ext/xml/
H A Dconfig.w3218 WARNING("xml support can't be enabled, libraries or headers are missing")
/php-src/ext/xsl/
H A Dconfig.w3245 WARNING("xsl not enabled; libraries and headers not found");
/php-src/ext/zip/
H A Dconfig.w3221 WARNING("zip not enabled; libraries and headers not found");
/php-src/ext/zlib/tests/
H A Dbug60761.phpt45 // expected headers since its CGI
H A Dbug61820.phpt2 bug #61820 using ob_gzhandler will complain about headers already sent when no compression
H A Dgzencode_variation1.phpt15 print "skip - OS is encoded in headers, tested header is non Darwin";
H A Dgzencode_variation2.phpt15 print "skip - OS is encoded in headers, tested header is non Darwin";
/php-src/main/
H A DSAPI.c393 zend_llist_init(&SG(sapi_headers).headers, sizeof(sapi_header_struct), in sapi_activate_headers_only()
434 …zend_llist_init(&SG(sapi_headers).headers, sizeof(sapi_header_struct), (void (*)(void *)) sapi_fre… in sapi_activate()
498 zend_llist_destroy(&SG(sapi_headers).headers); in sapi_deactivate_module()
655 … sapi_remove_header(&SG(sapi_headers).headers, sapi_header->header, strlen(sapi_header->header)); in sapi_header_add_op()
659 zend_llist_add_element(&SG(sapi_headers).headers, (void *) sapi_header); in sapi_header_add_op()
709 zend_llist_clean(&SG(sapi_headers).headers); in sapi_header_op()
735 sapi_remove_header(&SG(sapi_headers).headers, header_line, header_line_len); in sapi_header_op()
909 …zend_llist_apply_with_argument(&SG(sapi_headers).headers, (llist_apply_with_arg_func_t) sapi_modul… in sapi_send_headers()

Completed in 96 milliseconds

12345678