mb_preferred_mime_name
Get MIME charset string
Description
stringfalse mb_preferred_mime_name(string $encoding
)
Parameters
-
encoding
-
The encoding being checked.
Return Values
The MIME charset
string for character encoding
encoding
,
or false
if no charset is preferred for the given encoding
.
Examples
Example #1 mb_preferred_mime_name example
<?php
$outputenc = "sjis-win";
mb_http_output($outputenc);
ob_start("mb_output_handler");
header("Content-Type: text/html; charset=" . mb_preferred_mime_name($outputenc));
?>