Home
last modified time | relevance | path

Searched refs:headers (Results 126 – 150 of 159) sorted by relevance

1234567

/PHP-7.0/ext/mbstring/oniguruma/win32/
H A DMakefile30 headers = $(posixheaders) $(onigheaders) macro
68 $(headers) $(libsources) $(patchfiles) \
/PHP-7.0/sapi/cgi/
H A Dcgi_main.c407 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
415 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
441 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
456 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
463 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
1679 …zend_llist_apply_with_argument(&SG(sapi_headers).headers, (llist_apply_with_arg_func_t)add_respons…
/PHP-7.0/win32/build/
H A Dconfig.w32.phpize.in81 // Find the php_build dir - it contains headers and libraries
H A DMakefile223 build-devel: build-headers build-lib
H A Dconfig.w32106 // Find the php_build dir - it contains headers and libraries
/PHP-7.0/
H A Drun-tests.php1952 $headers = "";
1957 $headers = array();
1962 $headers[trim($line[0])] = trim($line[1]);
1982 $org_headers = $headers;
1983 $headers = array();
1989 $headers = $org_headers[$k];
H A DMakefile.global49 install-headers:
H A Dphp.ini-development24 ; Section headers (e.g. [Foo]) are also silently ignored, even though
209 ; (excluding headers and cookies) PHP should keep internally before pushing that
214 ; You may be able to send headers and cookies after you've already sent output
779 ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
784 ; http://php.net/cgi.rfc2616-headers
1040 ; the full path of the script, line number, To address and headers.
1451 ; or leave this empty to avoid sending anti-caching headers.
H A Dphp.ini-production24 ; Section headers (e.g. [Foo]) are also silently ignored, even though
209 ; (excluding headers and cookies) PHP should keep internally before pushing that
214 ; You may be able to send headers and cookies after you've already sent output
779 ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
784 ; http://php.net/cgi.rfc2616-headers
1040 ; the full path of the script, line number, To address and headers.
1451 ; or leave this empty to avoid sending anti-caching headers.
H A Dacinclude.m41067 dnl _PHP_CHECK_SIZEOF(type, cross-value, extra-headers [, found-action [, not-found-action]])
1113 dnl PHP_CHECK_SIZEOF(type, cross-value, extra-headers)
1125 dnl PHP_CHECK_TYPES(type-list, include-file [, extra-headers])
1663 AC_DEFINE(HAVE_DECLARED_TIMEZONE, 1, [Whether system headers declare timezone])
2209 [ --with-icu-dir=DIR Specify where ICU libraries and headers can be found], DEFAULT, no)
2222 AC_MSG_CHECKING([for location of ICU headers and libraries])
H A Dconfigure.in466 dnl Then headers.
1458 install_targets="$install_sapi $install_modules $install_binaries install-build install-headers ins…
1555 # Create configuration headers
H A Dconfig.guess904 objdump --private-headers /bin/sh | grep -q ld.so.1
H A DNEWS210 . Fixed bug #70470 (Built-in server truncates headers spanning over TCP
831 . Install headers on windows. (Darek Slusarczyk)
861 headers). (duncan3dc)
1948 . Fix >2G Content-Length headers in apache2handler. (Adam Harvey)
2252 . Fixed bug #70145 (From field incorrectly parsed from headers). (Anatol)
H A DINSTALL1615 set of HTTP headers. The headers it did return are:
1767 returning a complete set of HTTP headers.
1768 The headers it did return are:
/PHP-7.0/ext/pdo_odbc/
H A Dconfig.m4117 headers $PDO_ODBC_INCDIR])
/PHP-7.0/ext/imap/tests/
H A Dimap_fetch_overview_variation2.phpt10 * Description: Read an overview of the information in the headers
H A Dimap_fetch_overview_variation1.phpt10 * Description: Read an overview of the information in the headers
/PHP-7.0/ext/exif/
H A Dtest.txt185 all rights reserved by their authors and artists, see exif headers.
195 This test just prooves that some exif headers can be scanned.
/PHP-7.0/ext/mbstring/
H A Dmbstring.c4242 char *headers = NULL; in PHP_FUNCTION() local
4286 …"sss|sS", &to, &to_len, &subject, &subject_len, &message, &message_len, &headers, &headers_len, &e… in PHP_FUNCTION()
4294 if (headers) { in PHP_FUNCTION()
4295 MAIL_ASCIIZ_CHECK_MBSTRING(headers, headers_len); in PHP_FUNCTION()
4303 if (headers != NULL) { in PHP_FUNCTION()
4304 _php_mbstr_parse_mail_headers(&ht_headers, headers, headers_len); in PHP_FUNCTION()
4447 if (headers != NULL) { in PHP_FUNCTION()
4448 p = headers; in PHP_FUNCTION()
4483 headers = (char *)device.buffer; in PHP_FUNCTION()
4491 if (!err && php_mail(to_r, subject, message, headers, extra_cmd ? ZSTR_VAL(extra_cmd) : NULL)) { in PHP_FUNCTION()
/PHP-7.0/ext/soap/
H A Dphp_packet_soap.c267 hdrs = fnb->output.headers; in parse_packet_soap()
/PHP-7.0/ext/zip/
H A Dconfig.m430 AC_MSG_ERROR([Can not find zlib headers under "$PHP_ZLIB_DIR"])
/PHP-7.0/ext/standard/
H A Dbasic_functions.c4655 char *message, *opt = NULL, *headers = NULL; local
4660 …if (zend_parse_parameters(argc, "s|lps", &message, &message_len, &erropt, &opt, &opt_len, &headers
4668 if (_php_error_log_ex(opt_err, message, message_len, opt, headers) == FAILURE) {
4677 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers) /* {{{ */ argument
4679 return _php_error_log_ex(opt_err, message, (opt_err == 3) ? strlen(message) : 0, opt, headers);
4683 …hp_error_log_ex(int opt_err, char *message, size_t message_len, char *opt, char *headers) /* {{{ */ argument
4691 if (!php_mail(opt, "PHP error_log message", message, headers, NULL)) {
/PHP-7.0/ext/gd/
H A Dconfig.m457 AC_MSG_ERROR([Can't find zlib headers under "$PHP_ZLIB_DIR"])
/PHP-7.0/sapi/fpm/
H A Dwww.conf.in280 ; - HTTP headers like: %{HTTP_HOST}e or %{HTTP_USER_AGENT}e
/PHP-7.0/win32/
H A Dinstall.txt1434 returning a complete set of HTTP headers.
1435 The headers it did return are:
1648 returning a complete set of HTTP headers.
1649 The headers it did return are:

Completed in 102 milliseconds

1234567