Home
last modified time | relevance | path

Searched refs:header (Results 1 – 25 of 269) sorted by last modified time

1234567891011

/php-src/build/
H A Dlibtool.m42646 # LTDLINCL to the include flags for the libltdl header and adds
2671 # LTDLINCL to the include flags for the libltdl header and adds
H A Dphp.m4372 dnl Use this macro, if you need to add header search paths to the PHP build
1959 dnl PHP header files to be installed.
2217 dnl PHP_INIT_DTRACE(providerdesc, header-file, sources [, module])
2235 dnl header-file.
2681 dnl configuration header, warnings about redefined symbols are emitted for such
2683 dnl PACKAGE_* symbols in the generated configuration header template FILE. For
H A Dgen_stub.php1907 foreach ($headers as $header) {
1909 $headerEntry->appendChild($header);
/php-src/ext/odbc/
H A Dconfig.m43 AC_MSG_ERROR([ODBC header file '$ODBC_INCDIR/$1' not found!])
/php-src/
H A Dconfigure.ac486 dnl Check stdint types (must be after header check).
H A DUPGRADING.INTERNALS98 - The Zend/zend_istdiostream.h header has been removed.
184 and much smaller php_random_csprng.h header. The new header is included
H A Dphp.ini-development404 ; (e.g. by adding its signature to the Web server header). It is no security
721 ; By default, PHP will output a media type using the Content-Type header. To
834 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
836 ; RFC2616 compliant header.
H A Dphp.ini-production406 ; (e.g. by adding its signature to the Web server header). It is no security
723 ; By default, PHP will output a media type using the Content-Type header. To
836 ; use when sending HTTP response code. If set to 0, PHP sends Status: header that
838 ; RFC2616 compliant header.
/php-src/ext/opcache/tests/
H A Dissue0149.phpt14 $stub = "<?php header('Content-Type: text/plain;');
/php-src/ext/ffi/tests/
H A Dbug79177.phpt9 $header = <<<HEADER
15 $ffi = FFI::cdef($header);
18 $ffi = FFI::cdef($header, 'php_zend_test.dll');
20 $ffi = FFI::cdef($header, ffi_get_php_dll_name());
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c253 header->size = uint3korr(buffer); in mysqlnd_read_header()
256 DBG_INF_FMT("HEADER: prot_packet_no=%u size=%3zu", header->packet_no, header->size); in mysqlnd_read_header()
272 pfc->data->packet_no, header->packet_no, header->size); in mysqlnd_read_header()
275 pfc->data->packet_no, header->packet_no, header->size); in mysqlnd_read_header()
918 if (packet->header.size > 1) { in php_mysqlnd_eof_read()
1057 len = packet->header.size - 1; in php_mysqlnd_rset_header_read()
1337 MYSQLND_PACKET_HEADER header; in php_mysqlnd_read_row_ex() local
1369 *data_size += header.size; in php_mysqlnd_read_row_ex()
1390 *data_size += header.size; in php_mysqlnd_read_row_ex()
1673 packet->header.size = data_size; in php_mysqlnd_rowp_read()
[all …]
/php-src/ext/ldap/
H A Dconfig.m412 dnl Find Oracle Instant Client RPM header location corresponding to the
/php-src/ext/standard/
H A Dbasic_functions.stub.php2250 function header(string $header, bool $replace = true, int $response_code = 0): void {}
H A Dbasic_functions_arginfo.h733 ZEND_ARG_TYPE_INFO(0, header, IS_STRING, 0)
2527 ZEND_FUNCTION(header);
3160 ZEND_FE(header, arginfo_header)
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c3375 ir_ref *r, header; in _zend_jit_add_predecessor_ref() local
3384 header = jit->bb_start_ref[b]; in _zend_jit_add_predecessor_ref()
3385 if (header) { in _zend_jit_add_predecessor_ref()
3387 ZEND_ASSERT(jit->ctx.ir_base[header].op == IR_LOOP_BEGIN); in _zend_jit_add_predecessor_ref()
3399 ir_MERGE_SET_OP(header, i + 1, ref); in _zend_jit_add_predecessor_ref()
/php-src/sapi/cgi/
H A Dcgi_main.c410 strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0 in sapi_cgi_send_headers()
447 strncasecmp(h->header, "Status:", sizeof("Status:")-1) == 0 in sapi_cgi_send_headers()
451 PHPWRITE_H(h->header, h->header_len); in sapi_cgi_send_headers()
455 strncasecmp(h->header, "Content-Type:", sizeof("Content-Type:")-1) == 0 in sapi_cgi_send_headers()
460 PHPWRITE_H(h->header, h->header_len); in sapi_cgi_send_headers()
1665 char *p = strchr(h->header, ':');
1667 len = p - h->header;
1670 while (len != 0 && (h->header[len-1] == ' ' || h->header[len-1] == '\t')) {
1675 memcpy(s, h->header, len);
1680 add_assoc_stringl_ex(return_value, s, len, p, h->header_len - (p - h->header));
/php-src/ext/intl/
H A Dphp_intl.stub.php502 function locale_accept_from_http(string $header): string|false {} argument
H A Dphp_intl_arginfo.h566 ZEND_ARG_TYPE_INFO(0, header, IS_STRING, 0)
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt185 mb_encode_mimeheader(): Argument #2 ($charset) "Quoted-Printable" cannot be used for MIME header en…
/php-src/ext/openssl/tests/
H A DServerClientTestCase.inc35 // Ensure there's enough data left for the header.
/php-src/ext/session/
H A Dsession.c1271 sapi_header_struct *header; in php_session_remove_cookie() local
1285 header = (sapi_header_struct *)(current->data); in php_session_remove_cookie()
1287 if (header->header_len > len && header->header[len] == ':' in php_session_remove_cookie()
1288 && !strncmp(header->header, session_cookie, session_cookie_len)) { in php_session_remove_cookie()
1299 sapi_free_header(header); in php_session_remove_cookie()
/php-src/ext/intl/locale/
H A Dlocale.stub.php135 public static function acceptFromHttp(string $header): string|false {} argument
H A Dlocale_arginfo.h62 ZEND_ARG_TYPE_INFO(0, header, IS_STRING, 0)
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_encoding_edge_case_07.phpt9 $header = "<!doctype html><html><head><meta charset=\"gb18030\"></head><body>";
10 $padding_required_until_4095 = 4095 - strlen($header);
12 $dom = DOM\HTMLDocument::createFromString($header . str_repeat("A", $padding_required_until_4095) .…
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_createFromFile_createFromString_BOM_buffer_edge.phpt8 $header = "\xEF\xBB\xBF<!doctype html><html><body>";
10 $data = $header . str_repeat("a", 4096 - strlen($header) - strlen($trailer)) . $trailer;
12 $dom = DOM\HTMLDocument::createFromString($header . str_repeat("a", 4096 - strlen($header) - strlen…

Completed in 190 milliseconds

1234567891011