|
|
mb_preferred_mime_name (PHP 4 >= 4.0.6, PHP 5) mb_preferred_mime_name -- Get MIME charset string Descriptionstring mb_preferred_mime_name ( string encoding )
mb_preferred_mime_name() returns MIME
charset string for character encoding
encoding. It returns
charset string.
Пример 1. mb_preferred_mime_string() 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));
?>
|
|
add a note
User Contributed Notes
mb_preferred_mime_name
There are no user contributed notes for this page.
|