From addc97f0d58f4234080f520703c11b1d24940d3a Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 17 Feb 2012 21:13:24 +0000 Subject: [PATCH] hack PHP_5_4 compatibility into v1 --- http_api.c | 14 +++++++------- http_cache_api.c | 13 ++++++++++++- http_deflatestream_object.c | 4 ++-- http_encoding_api.c | 16 ++++++++++++++++ http_inflatestream_object.c | 4 ++-- http_message_api.c | 4 ++++ http_message_object.c | 13 ++++++++----- http_querystring_object.c | 4 ++-- http_request_info.c | 15 +++++++++++++++ http_request_object.c | 14 +++++++++----- http_requestdatashare_object.c | 4 ++-- http_requestpool_object.c | 4 ++-- http_response_object.c | 14 +++++++++++++- missing.h | 4 ++-- php_http.h | 2 +- php_http_api.h | 18 +++++++++++++----- php_http_std_defs.h | 6 +++++- scripts/gen_curlinfo.php | 9 +++++++-- tests/request_gzip.phpt | 2 +- 19 files changed, 123 insertions(+), 41 deletions(-) diff --git a/http_api.c b/http_api.c index 06cc43d..aa5b97b 100644 --- a/http_api.c +++ b/http_api.c @@ -253,16 +253,12 @@ STATUS _http_exit_ex(int status, char *header, char *body, zend_bool send_header return FAILURE; } - if ( -#if defined(PHP_VERSION_ID) && (PHP_VERSION_ID >= 50399) - (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_ACTIVE) && - (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_HANDLER_FLUSHABLE) && -#else - !OG(ob_lock) && -#endif +#ifndef PHP_OUTPUT_NEWAPI + if (!OG(ob_lock) && !php_ob_handler_used("zlib output compression" TSRMLS_CC) && !php_ob_handler_used("ob_gzhandler" TSRMLS_CC)) { php_end_ob_buffers(0 TSRMLS_CC); } +#endif if ((SUCCESS == sapi_send_headers(TSRMLS_C)) && body) { PHPWRITE(body, strlen(body)); @@ -286,7 +282,11 @@ STATUS _http_exit_ex(int status, char *header, char *body, zend_bool send_header if (HTTP_G->force_exit) { zend_bailout(); } else { +#ifdef PHP_OUTPUT_NEWAPI + php_output_start_devnull(TSRMLS_C); +#else php_ob_set_internal_handler(http_ob_blackhole, 4096, "blackhole", 0 TSRMLS_CC); +#endif } return SUCCESS; diff --git a/http_cache_api.c b/http_cache_api.c index 4cc07b9..b6bc237 100644 --- a/http_cache_api.c +++ b/http_cache_api.c @@ -182,13 +182,24 @@ PHP_HTTP_API STATUS _http_cache_etag(const char *etag, size_t etag_len, PHP_HTTP_API STATUS _http_start_ob_etaghandler(TSRMLS_D) { /* already running? */ +#ifdef PHP_OUTPUT_NEWAPI + STATUS rv; + + if (php_output_handler_conflict(ZEND_STRL("ob_etaghandler"), ZEND_STRL("ob_etaghandler") TSRMLS_CC)) { + return FAILURE; + } +#else if (php_ob_handler_used("ob_etaghandler" TSRMLS_CC)) { http_error(HE_WARNING, HTTP_E_RUNTIME, "ob_etaghandler can only be used once"); return FAILURE; } - +#endif HTTP_G->etag.started = 1; +#ifdef PHP_OUTPUT_NEWAPI + return php_output_start_internal(ZEND_STRL("ob_etaghandler"), _http_ob_etaghandler, HTTP_G->send.buffer_size, 0 TSRMLS_CC); +#else return php_start_ob_buffer_named("ob_etaghandler", HTTP_G->send.buffer_size, 0 TSRMLS_CC); +#endif } PHP_HTTP_API zend_bool _http_interrupt_ob_etaghandler(TSRMLS_D) diff --git a/http_deflatestream_object.c b/http_deflatestream_object.c index 22f5c04..6b0d472 100644 --- a/http_deflatestream_object.c +++ b/http_deflatestream_object.c @@ -108,8 +108,8 @@ zend_object_value _http_deflatestream_object_new_ex(zend_class_entry *ce, http_e } #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); diff --git a/http_encoding_api.c b/http_encoding_api.c index 15fb5fd..1d9b916 100644 --- a/http_encoding_api.c +++ b/http_encoding_api.c @@ -46,10 +46,18 @@ PHP_MINIT_FUNCTION(http_encoding) PHP_RINIT_FUNCTION(http_encoding) { if (HTTP_G->send.inflate.start_auto) { +#ifdef PHP_OUTPUT_NEWAPI + php_output_start_internal(ZEND_STRL("http inflate"), _http_ob_inflatehandler, HTTP_INFLATE_BUFFER_SIZE, 0 TSRMLS_CC); +#else php_ob_set_internal_handler(_http_ob_inflatehandler, HTTP_INFLATE_BUFFER_SIZE, "http inflate", 0 TSRMLS_CC); +#endif } if (HTTP_G->send.deflate.start_auto) { +#ifdef PHP_OUTPUT_NEWAPI + php_output_start_internal(ZEND_STRL("http deflate"), _http_ob_deflatehandler, HTTP_DEFLATE_BUFFER_SIZE, 0 TSRMLS_CC); +#else php_ob_set_internal_handler(_http_ob_deflatehandler, HTTP_DEFLATE_BUFFER_SIZE, "http deflate", 0 TSRMLS_CC); +#endif } return SUCCESS; } @@ -161,10 +169,18 @@ PHP_HTTP_API const char *_http_encoding_dechunk(const char *encoded, size_t enco PHP_HTTP_API int _http_encoding_response_start(size_t content_length, zend_bool ignore_http_ohandler TSRMLS_DC) { int response = HTTP_G->send.deflate.response; +#ifdef PHP_OUTPUT_NEWAPI + int ohandler = php_output_handler_started(ZEND_STRL("ob_gzhandler") TSRMLS_CC) || php_output_handler_started(ZEND_STRL("zlib output compression") TSRMLS_CC); +#else int ohandler = php_ob_handler_used("ob_gzhandler" TSRMLS_CC) || php_ob_handler_used("zlib output compression" TSRMLS_CC); +#endif if (!ohandler && !ignore_http_ohandler) { +#ifdef PHP_OUTPUT_NEWAPI + ohandler = php_output_handler_started(ZEND_STRL("ob_defaltehandler") TSRMLS_CC) || php_output_handler_started(ZEND_STRL("http deflate") TSRMLS_CC); +#else ohandler = php_ob_handler_used("ob_deflatehandler" TSRMLS_CC) || php_ob_handler_used("http deflate" TSRMLS_CC); +#endif } if (response && !ohandler) { diff --git a/http_inflatestream_object.c b/http_inflatestream_object.c index 1695bce..3340e4c 100644 --- a/http_inflatestream_object.c +++ b/http_inflatestream_object.c @@ -97,8 +97,8 @@ zend_object_value _http_inflatestream_object_new_ex(zend_class_entry *ce, http_e } #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); diff --git a/http_message_api.c b/http_message_api.c index 66bc508..007437c 100644 --- a/http_message_api.c +++ b/http_message_api.c @@ -119,7 +119,11 @@ PHP_HTTP_API http_message *_http_message_init_env(http_message *message, http_me http_message_set_info(message, &inf); http_get_response_headers(&message->hdrs); +#ifdef PHP_OUTPUT_NEWAPI + if (SUCCESS == php_output_get_contents(&tval TSRMLS_CC)) { +#else if (SUCCESS == php_ob_get_buffer(&tval TSRMLS_CC)) { +#endif message->body.data = Z_STRVAL(tval); message->body.used = Z_STRLEN(tval); message->body.free = 1; /* "\0" */ diff --git a/http_message_object.c b/http_message_object.c index 23974c3..b7d8261 100644 --- a/http_message_object.c +++ b/http_message_object.c @@ -515,8 +515,8 @@ zend_object_value _http_message_object_new_ex(zend_class_entry *ce, http_message #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); @@ -623,9 +623,12 @@ static HashTable *_http_message_object_get_props(zval *object TSRMLS_DC) zval *headers; getObjectEx(http_message_object, obj, object); http_message *msg = obj->message; - HashTable *props = OBJ_PROP(obj); zval array, *parent; - +#ifdef ZEND_ENGINE_2_4 + HashTable *props = zend_get_std_object_handlers()->get_properties(object TSRMLS_CC); +#else + HashTable *props = OBJ_PROP(obj); +#endif INIT_ZARR(array, props); #define ASSOC_PROP(array, ptype, name, val) \ @@ -687,7 +690,7 @@ static HashTable *_http_message_object_get_props(zval *object TSRMLS_DC) } ASSOC_PROP(array, zval, "parentMessage", parent); - return OBJ_PROP(obj); + return props; } /* ### USERLAND ### */ diff --git a/http_querystring_object.c b/http_querystring_object.c index fd87294..4c82eda 100644 --- a/http_querystring_object.c +++ b/http_querystring_object.c @@ -192,8 +192,8 @@ zend_object_value _http_querystring_object_new_ex(zend_class_entry *ce, void *no } #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); diff --git a/http_request_info.c b/http_request_info.c index 809512a..b817841 100644 --- a/http_request_info.c +++ b/http_request_info.c @@ -148,6 +148,21 @@ PHP_HTTP_API void _http_request_info(http_request *request, HashTable *info) add_assoc_long_ex(&array, "condition_unmet", sizeof("condition_unmet"), l); } #endif +#if HTTP_CURL_VERSION(7,21,0) + if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_PRIMARY_PORT, &l)) { + add_assoc_long_ex(&array, "primary_port", sizeof("primary_port"), l); + } +#endif +#if HTTP_CURL_VERSION(7,21,0) + if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_LOCAL_IP, &c)) { + add_assoc_string_ex(&array, "local_ip", sizeof("local_ip"), c ? c : "", 1); + } +#endif +#if HTTP_CURL_VERSION(7,21,0) + if (CURLE_OK == curl_easy_getinfo(request->ch, CURLINFO_LOCAL_PORT, &l)) { + add_assoc_long_ex(&array, "local_port", sizeof("local_port"), l); + } +#endif /* END */ #if HTTP_CURL_VERSION(7,19,1) && defined(HTTP_HAVE_OPENSSL) { diff --git a/http_request_object.c b/http_request_object.c index d502006..f4f27cf 100644 --- a/http_request_object.c +++ b/http_request_object.c @@ -493,8 +493,8 @@ zend_object_value _http_request_object_new_ex(zend_class_entry *ce, CURL *ch, ht } #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); @@ -683,7 +683,7 @@ STATUS _http_request_object_requesthandler(http_request_object *obj, zval *this_ if ( (Z_TYPE_P(options) != IS_ARRAY) || (SUCCESS != zend_hash_find(Z_ARRVAL_P(options), "onprogress", sizeof("onprogress"), (void *) &entry) - || (!IS_CALLABLE(*entry, 0, NULL)))) { + || (!HTTP_IS_CALLABLE(*entry, 0, NULL)))) { MAKE_STD_ZVAL(pcb); array_init(pcb); ZVAL_ADDREF(getThis()); @@ -788,8 +788,12 @@ STATUS _http_request_object_responsehandler(http_request_object *obj, zval *this return ret; } - -static int apply_pretty_key(void *pDest, int num_args, va_list args, zend_hash_key *hash_key) +#ifdef ZEND_ENGINE_2_4 +# define APK_DC TSRMLS_DC +#else +# define APK_DC +#endif +static int apply_pretty_key(void *pDest APK_DC, int num_args, va_list args, zend_hash_key *hash_key) { if (hash_key->arKey && hash_key->nKeyLength > 1) { hash_key->h = zend_hash_func(pretty_key(hash_key->arKey, hash_key->nKeyLength - 1, 1, 0), hash_key->nKeyLength); diff --git a/http_requestdatashare_object.c b/http_requestdatashare_object.c index b1491c1..eed7d6b 100644 --- a/http_requestdatashare_object.c +++ b/http_requestdatashare_object.c @@ -126,8 +126,8 @@ zend_object_value _http_requestdatashare_object_new_ex(zend_class_entry *ce, htt } #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); diff --git a/http_requestpool_object.c b/http_requestpool_object.c index 47aa134..a0f219c 100644 --- a/http_requestpool_object.c +++ b/http_requestpool_object.c @@ -130,8 +130,8 @@ zend_object_value _http_requestpool_object_new(zend_class_entry *ce TSRMLS_DC) http_request_pool_init(&o->pool); #ifdef ZEND_ENGINE_2_4 - zend_object_std_init(OBJ_PROP(o), ce TSRMLS_CC); - object_properties_init(OBJ_PROP(o), ce); + zend_object_std_init(o, ce TSRMLS_CC); + object_properties_init(o, ce); #else ALLOC_HASHTABLE(OBJ_PROP(o)); zend_hash_init(OBJ_PROP(o), zend_hash_num_elements(&ce->default_properties), NULL, ZVAL_PTR_DTOR, 0); diff --git a/http_response_object.c b/http_response_object.c index cfa5095..c8d45cc 100644 --- a/http_response_object.c +++ b/http_response_object.c @@ -745,7 +745,11 @@ PHP_METHOD(HttpResponse, send) zval *zetag, *the_data; MAKE_STD_ZVAL(the_data); +#ifdef PHP_OUTPUT_NEWAPI + php_output_get_contents(the_data TSRMLS_CC); +#else php_ob_get_buffer(the_data TSRMLS_CC); +#endif zend_update_static_property(THIS_CE, ZEND_STRS("data")-1, the_data TSRMLS_CC); ZVAL_LONG(*zend_std_get_static_property(THIS_CE, ZEND_STRS("mode")-1, 0 ZEND_LITERAL_NIL_CC TSRMLS_CC), SEND_DATA); @@ -767,7 +771,11 @@ PHP_METHOD(HttpResponse, send) /* interrupt on-the-fly etag generation */ HTTP_G->etag.started = 0; /* discard previous output buffers */ +#ifdef PHP_OUTPUT_NEWAPI + php_output_discard_all(TSRMLS_C); +#else php_end_ob_buffers(0 TSRMLS_CC); +#endif } /* caching */ @@ -879,9 +887,13 @@ PHP_METHOD(HttpResponse, capture) HTTP_CHECK_HEADERS_SENT(RETURN_FALSE); zend_update_static_property_long(THIS_CE, ZEND_STRS("catch")-1, 1 TSRMLS_CC); - +#ifdef PHP_OUTPUT_NEWAPI + php_output_discard_all(TSRMLS_C); + php_output_start_default(TSRMLS_C); +#else php_end_ob_buffers(0 TSRMLS_CC); php_start_ob_buffer(NULL, 0, 0 TSRMLS_CC); +#endif /* register shutdown function */ { diff --git a/missing.h b/missing.h index 252aed9..6afa3ac 100644 --- a/missing.h +++ b/missing.h @@ -70,7 +70,7 @@ # define HTTP_ZAPI_CONST_CAST(t) (const t) # define GLOBAL_ERROR_HANDLING EG(error_handling) # define GLOBAL_EXCEPTION_CLASS EG(exception_class) -# define IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp) TSRMLS_CC) +# define HTTP_IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp) TSRMLS_CC) # define HTTP_STATIC_ARG_INFO #else # define HTTP_ZAPI_HASH_TSRMLS_CC @@ -78,7 +78,7 @@ # define HTTP_ZAPI_CONST_CAST(t) (t) # define GLOBAL_ERROR_HANDLING PG(error_handling) # define GLOBAL_EXCEPTION_CLASS PG(exception_class) -# define IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp)) +# define HTTP_IS_CALLABLE(cb_zv, flags, cb_sp) zend_is_callable((cb_zv), (flags), (cb_sp)) # define HTTP_STATIC_ARG_INFO static #endif diff --git a/php_http.h b/php_http.h index 9b9575d..7277740 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_HTTP_VERSION "1.7.1" +#define PHP_HTTP_VERSION "1.7.2dev" #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/php_http_api.h b/php_http_api.h index fdee36d..45efd6e 100644 --- a/php_http_api.h +++ b/php_http_api.h @@ -96,12 +96,18 @@ extern STATUS _http_object_new(zend_object_value *ov, const char *cname_str, uin http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Invalid compression level (-1 to 9): %d", level); \ action; \ } - +#ifndef PHP_OUTPUT_NEWAPI +# define HTTP_GET_OUTPUT_START() \ + char *output_start_filename = php_get_output_start_filename(TSRMLS_C); \ + int output_start_lineno = php_get_output_start_lineno(TSRMLS_C) +#else +# define HTTP_GET_OUTPUT_START() \ + char *output_start_filename = php_output_get_start_filename(TSRMLS_C); \ + int output_start_lineno = php_output_get_start_lineno(TSRMLS_C) +#endif #define HTTP_CHECK_HEADERS_SENT(action) \ if (SG(headers_sent) && !SG(request_info).no_headers) { \ - char *output_start_filename = php_get_output_start_filename(TSRMLS_C); \ - int output_start_lineno = php_get_output_start_lineno(TSRMLS_C); \ - \ + HTTP_GET_OUTPUT_START(); \ if (output_start_filename) { \ http_error_ex(HE_WARNING, HTTP_E_HEADER, "Cannot modify header information - headers already sent by (output started at %s:%d)", \ output_start_filename, output_start_lineno); \ @@ -251,7 +257,7 @@ static inline zval *_http_zset(int type, zval *z) #define http_zsep(t, z) _http_zsep_ex((t), (z), NULL) #define http_zsep_ex(t, z, p) _http_zsep_ex((t), (z), (p)) static inline zval *_http_zsep_ex(int type, zval *z, zval **p) { - SEPARATE_ARG_IF_REF(z); + Z_ADDREF_P(z); if (Z_TYPE_P(z) != type) { switch (type) { case IS_NULL: convert_to_null_ex(&z); break; @@ -262,6 +268,8 @@ static inline zval *_http_zsep_ex(int type, zval *z, zval **p) { case IS_ARRAY: convert_to_array_ex(&z); break; case IS_OBJECT: convert_to_object_ex(&z); break; } + } else { + SEPARATE_ZVAL_IF_NOT_REF(&z); } if (p) { *p = z; diff --git a/php_http_std_defs.h b/php_http_std_defs.h index 1b08ffd..32c1233 100644 --- a/php_http_std_defs.h +++ b/php_http_std_defs.h @@ -182,7 +182,11 @@ typedef int STATUS; # define getObject(t, o) getObjectEx(t, o, getThis()) # define getObjectEx(t, o, v) t * o = ((t *) zend_object_store_get_object(v TSRMLS_CC)) # define putObject(t, o) zend_objects_store_put(o, (zend_objects_store_dtor_t) zend_objects_destroy_object, (zend_objects_free_object_storage_t) _ ##t## _free, NULL TSRMLS_CC); -# ifndef WONKY +# if defined(ZEND_ENGINE_2_4) +# define freeObject(o) \ + zend_object_std_dtor(o TSRMLS_CC); \ + efree(o); +# elif !defined(WONKY) # define freeObject(o) \ if (OBJ_GUARDS(o)) { \ zend_hash_destroy(OBJ_GUARDS(o)); \ diff --git a/scripts/gen_curlinfo.php b/scripts/gen_curlinfo.php index f234685..b69c96c 100644 --- a/scripts/gen_curlinfo.php +++ b/scripts/gen_curlinfo.php @@ -36,11 +36,16 @@ $ifdefs = array( 'PRIMARY_IP' => 'HTTP_CURL_VERSION(7,19,0)', 'APPCONNECT_TIME' => 'HTTP_CURL_VERSION(7,19,0)', 'REDIRECT_URL' => 'HTTP_CURL_VERSION(7,18,2)', - 'CONDITION_UNMET' => 'HTTP_CURL_VERSION(7,19,4)', + 'CONDITION_UNMET' => 'HTTP_CURL_VERSION(7,19,4)', + 'PRIMARY_PORT' => 'HTTP_CURL_VERSION(7,21,0)', + 'LOCAL_PORT' => 'HTTP_CURL_VERSION(7,21,0)', + 'LOCAL_IP' => 'HTTP_CURL_VERSION(7,21,0)', ); $exclude = array( - 'PRIVATE', 'LASTSOCKET', 'FTP_ENTRY_PATH', 'CERTINFO', + 'PRIVATE', 'LASTSOCKET', 'FTP_ENTRY_PATH', 'CERTINFO', + 'RTSP_SESSION_ID', 'RTSP_CLIENT_CSEQ', 'RTSP_SERVER_CSEQ', 'RTSP_CSEQ_RECV' ); + $translate = array( 'HTTP_CONNECTCODE' => "connect_code", 'COOKIELIST' => 'cookies', diff --git a/tests/request_gzip.phpt b/tests/request_gzip.phpt index 81f9bc4..cf734ae 100644 --- a/tests/request_gzip.phpt +++ b/tests/request_gzip.phpt @@ -25,7 +25,7 @@ object(stdClass)%a { ["responseStatus"]=> string(2) "OK" ["headers"]=> - array(8) { + array(%d) { %a ["Vary"]=> string(15) "Accept-Encoding" -- 2.30.2