mb_preferred_mime_name
PHP Manual
PHP Manual»Multibyte String Funzioni»mb_preferred_mime_name

mb_preferred_mime_name

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

mb_preferred_mime_nameGet MIME charset string

Descrizione

function mb_preferred_mime_name(string $encoding): string|false

Get a MIME charset string for a specific encoding.

Elenco dei parametri

encoding

The encoding being checked.

Valori restituiti

The MIME charset string for character encoding encoding, or false if no charset is preferred for the given encoding.

Esempi

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));
?>

To Top