summaryrefslogtreecommitdiff
path: root/ext/mbstring
diff options
context:
space:
mode:
authorRui Hirokawa <hirokawa@php.net>2001-06-07 15:11:11 +0000
committerRui Hirokawa <hirokawa@php.net>2001-06-07 15:11:11 +0000
commit2be3c40b3110f171ce2c5437264bfc74cc973db2 (patch)
tree5a8d04dd3a535aa78d0bc4c2419a3c066aab4902 /ext/mbstring
parent48920fbb1b62e25b4493026c5cb0a736e8a277aa (diff)
downloadphp-git-2be3c40b3110f171ce2c5437264bfc74cc973db2.tar.gz
added charset parameter to output of mb_output_handler().
Diffstat (limited to 'ext/mbstring')
-rw-r--r--ext/mbstring/mbstring.c32
1 files changed, 28 insertions, 4 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c
index d20d2bd7f6..37f5fc49dc 100644
--- a/ext/mbstring/mbstring.c
+++ b/ext/mbstring/mbstring.c
@@ -1267,6 +1267,8 @@ PHP_FUNCTION(mb_output_handler)
{
pval **arg_string, **arg_status;
mbfl_string string, result, *ret;
+ const char *mimetype, *charset;
+ mbfl_memory_device device;
SLS_FETCH();
MBSTRLS_FETCH();
@@ -1277,13 +1279,35 @@ PHP_FUNCTION(mb_output_handler)
convert_to_string_ex(arg_string);
convert_to_long_ex(arg_status);
+ if ( SG(sapi_headers).send_default_content_type && ! SG(headers_sent) &&
+ MBSTRG(current_http_output_encoding) != mbfl_no_encoding_pass &&
+ (Z_LVAL_PP(arg_status) & PHP_OUTPUT_HANDLER_START) != 0) {
+ mimetype = SG(default_mimetype) ? SG(default_mimetype) : SAPI_DEFAULT_MIMETYPE;
+ charset = mbfl_no2preferred_mime_name(MBSTRG(current_http_output_encoding));
+ if ( charset != NULL && (*mimetype == '\0' || strncasecmp(mimetype, "text/", 5) == 0) ) {
+ mbfl_memory_device_init(&device, 0, 0);
+ mbfl_memory_device_strcat(&device, "Content-Type: ");
+ if (*mimetype == '\0') {
+ mbfl_memory_device_strcat(&device, "text/html");
+ } else {
+ mbfl_memory_device_strcat(&device, mimetype);
+ }
+ mbfl_memory_device_strcat(&device, ";charset=");
+ mbfl_memory_device_strcat(&device, charset);
+ ret = mbfl_memory_device_result(&device, &result);
+ if (ret != NULL) {
+ if (sapi_add_header(ret->val, ret->len, 0) != FAILURE) {
+ SG(sapi_headers).send_default_content_type = 0;
+ }
+ }
+ }
+ }
+
ret = NULL;
- if (SG(sapi_headers).send_default_content_type &&
- MBSTRG(current_http_output_encoding) != mbfl_no_encoding_pass &&
- MBSTRG(outconv) == NULL) {
+ if (MBSTRG(current_http_output_encoding) != mbfl_no_encoding_pass && MBSTRG(outconv) == NULL) {
MBSTRG(outconv) = mbfl_buffer_converter_new(MBSTRG(current_internal_encoding), MBSTRG(current_http_output_encoding), 0);
}
- if (SG(sapi_headers).send_default_content_type && MBSTRG(outconv) != NULL) {
+ if (MBSTRG(current_http_output_encoding) != mbfl_no_encoding_pass && MBSTRG(outconv) != NULL) {
mbfl_buffer_converter_illegal_mode(MBSTRG(outconv), MBSTRG(current_filter_illegal_mode));
mbfl_buffer_converter_illegal_substchar(MBSTRG(outconv), MBSTRG(current_filter_illegal_substchar));
mbfl_string_init(&string);