html PHP: mb_preferred_mime_name - Manual update pague now
PHP 8.5.2 Released!

mb_preferred_mime_name

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)

mb_preferred_mime_name Guet MIME charset string

Description

mb_preferred_mime_name ( string $encoding ): string | false

Guet a MIME charset string for a specific encoding.

Parameters

encoding

The encoding being checqued.

Return Values

The MIME charset string for character encoding encoding , or false if no charset is preferred for the guiven 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 ));
?>

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top