©
本文檔使用 php中文網手册 發布
(PHP 4 >= 4.0.6, PHP 5)
mb_http_output — 设置/获取 HTTP 输出字符编码
$encoding
= mb_http_output()
] )
设置/获取 HTTP 输出字符编码。此函数被调用之后输出的内容会被转换成 encoding
。
encoding
如果设置了 encoding
, mb_http_output() 设置 HTTP 输出字符编码为 encoding
。
如果省略了 encoding
, mb_http_output() 返回当前的 HTTP 输出字符编码。
如果省略了 encoding
, mb_http_output() 返回当前的 HTTP 输出字符编码。
否则成功时返回 TRUE
, 或者在失败时返回 FALSE
。
[#1] Anonymous [2014-04-13 10:12:18]
// ----- set mb_http_output encoding to UTF-8 -----
mb_http_output('UTF-8');
// ----- setup php for working with Unicode data -----
mb_internal_encoding('UTF-8');
mb_http_output('UTF-8');
mb_http_input('UTF-8');
mb_language('uni');
mb_regex_encoding('UTF-8');
ob_start('mb_output_handler');
// ---------------
[#2] anders jenbo pc dk [2007-10-03 01:23:55]
By default this is set to 'pass' witch means that php will not touch the encoding and output it as it is in the source file.
Normaly this function isn't needed as long as you save the .php file in the same encoding as you want it to output as well as retrive all input in the same encoding, but it don't seam to herd as long as it able to figure out what encoding the output is in ??n the first place.