Home
last modified time | relevance | path

Searched refs:headers (Results 76 – 100 of 198) sorted by path

12345678

/php-src/ext/session/tests/
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.
H A Dbug74941.phpt2 Bug #74941 session_start() triggers a warning after headers have been sent but cookies are not used
H A Dsession_regenerate_id_cookie.phpt33 $headers = headers_list();
35 foreach ($headers as $h) {
41 var_dump($headers);
/php-src/ext/session/tests/user_session_module/
H A Dbug80889a.phpt36 Warning: session_set_save_handler(): Session save handler cannot be changed after headers have alre…
/php-src/ext/simplexml/
H A Dconfig.w3227 WARNING("simplexml not enabled; libraries and headers not found");
/php-src/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-src/ext/soap/
H A Dphp_http.c25 static char *get_http_header_value_nodup(char *headers, char *type, size_t *len);
26 static char *get_http_header_value(char *headers, char *type);
27 static zend_string *get_http_body(php_stream *socketd, int close, char *headers);
1364 headerslen = strlen(headers); in get_http_header_value_nodup()
1368 pos = headers; in get_http_header_value_nodup()
1384 eol = headers + headerslen; in get_http_header_value_nodup()
1411 static char *get_http_header_value(char *headers, char *type) in get_http_header_value() argument
1416 value = get_http_header_value_nodup(headers, type, &len); in get_http_header_value()
1432 header = get_http_header_value(headers, "Connection: "); in get_http_body()
1438 header = get_http_header_value(headers, "Transfer-Encoding: "); in get_http_body()
[all …]
H A Dphp_packet_soap.c264 hdrs = fnb->output.headers; in parse_packet_soap()
H A Dphp_sdl.c646 if (binding->headers == NULL) { in wsdl_soap_binding_body()
2075 if (body->headers) { in sdl_serialize_soap_body()
2520 if (body->headers) { in make_persistent_sdl_soap_body()
2521 body->headers = make_persistent_sdl_function_headers(body->headers, ptr_map); in make_persistent_sdl_soap_body()
3196 smart_str headers = {0}; in get_sdl() local
3327 if (headers.s && ZSTR_LEN(headers.s) > 0) { in get_sdl()
3504 if (body.headers) { in delete_sdl_soap_binding_function_body()
3505 zend_hash_destroy(body.headers); in delete_sdl_soap_binding_function_body()
3506 efree(body.headers); in delete_sdl_soap_binding_function_body()
3515 if (body.headers) { in delete_sdl_soap_binding_function_body_persistent()
[all …]
H A Dphp_sdl.h113 HashTable *headers; /* array of sdlSoapBindingFunctionHeaderPtr */ member
H A Dsoap.c2478 zval *headers = NULL; local
2517 if (headers == NULL || Z_TYPE_P(headers) == IS_NULL) {
2526 Z_ADDREF_P(headers);
2768 zval *headers = NULL; local
2775 if (headers == NULL || Z_TYPE_P(headers) == IS_NULL) {
3168 *headers = NULL;
3266 *headers = h;
3469 char *hdr_ns = headers->hdr?headers->hdr->ns:NULL;
3491 if (headers->hdr && headers->hdr->headerfaults &&
3685 if (headers) {
[all …]
H A Dsoap.stub.php613 * @param SoapHeader|array|null $headers
616 public function __setSoapHeaders($headers = null): bool {} argument
H A Dsoap_arginfo.h132 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(0, headers, "null")
/php-src/ext/soap/tests/bugs/
H A Dbug73538.phpt2 SOAP: SoapClient::__setHeaders array overrides previous 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);
H A Dserver023.phpt2 SOAP Server 23: Send SOAP headers those were not received
H A Dserver024.phpt2 SOAP Server 24: Send SOAP headers those were not received
H A Dserver025.phpt2 SOAP Server 25: One-way SOAP headers encoding using WSDL
/php-src/ext/sockets/
H A Dconfig.w3214 WARNING("sockets not enabled; libraries and headers not found");
/php-src/ext/sodium/
H A Dconfig.w3211 WARNING("libsodium not enabled; libraries and headers not found");
/php-src/ext/sqlite3/
H A Dconfig.w3213 WARNING("sqlite3 not enabled; libraries and/or headers not found");
/php-src/ext/standard/
H A Dbasic_functions.c1332 char *message, *opt = NULL, *headers = NULL; local
1341 Z_PARAM_STRING_OR_NULL(headers, headers_len)
1344 if (_php_error_log_ex((int) erropt, message, message_len, opt, headers) == FAILURE) {
1353 PHPAPI int _php_error_log(int opt_err, const char *message, const char *opt, const char *headers) /… argument
1355 return _php_error_log_ex(opt_err, message, (opt_err == 3) ? strlen(message) : 0, opt, headers);
1359 …t opt_err, const char *message, size_t message_len, const char *opt, const char *headers) /* {{{ */ argument
1367 if (!php_mail(opt, "PHP error_log message", message, headers, NULL)) {
H A Dbasic_functions.h50 PHPAPI int _php_error_log(int opt_err, const char *message, const char *opt, const char *headers);
51 …log_ex(int opt_err, const char *message, size_t message_len, const char *opt, const char *headers);
H A Dconfig.w3213 WARNING("Argon2 not enabled; libraries and headers not found");
H A Dhead.c350 …zend_llist_apply_with_argument(&SG(sapi_headers).headers, php_head_apply_header_list_to_hash, retu… in PHP_FUNCTION()

Completed in 104 milliseconds

12345678