* slim-postdata-merge:
remove unused code
tests
make reading php://input JIT if enable_post_data_reading=0
revert stream cast
fix ZTS build
slim post data
Conflicts:
ext/soap/soap.c
ext/standard/php_fopen_wrapper.c
main/SAPI.c
}
}
- doc_request = soap_xmlParseFile("php://input");
+ doc_request = soap_xmlParseFile("php://input" TSRMLS_CC);
if (zf) {
- php_stream_filter_remove(zf, 1);
- }
+ php_stream_filter_remove(zf, 1 TSRMLS_CC);
- }
} else {
zval_ptr_dtor(&retval);
return;
SG(request_info).content_length, SG(post_max_size));
return;
}
+
++
SG(request_info).request_body = php_stream_temp_create(TEMP_STREAM_DEFAULT, SAPI_POST_BLOCK_SIZE);
if (sapi_module.read_post) {