(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
mb_preferred_mime_name — 获取 MIME 字符串
encoding
要检查的字符串。
字符编码 encoding
的 MIME charset
string,如果指定 encoding
没有首选字符集,则为 false
。
示例 #1 mb_preferred_mime_name() 示例
<?php
$outputenc = "sjis-win";
mb_http_output($outputenc);
ob_start("mb_output_handler");
header("Content-Type: text/html; charset=" . mb_preferred_mime_name($outputenc));
?>