mailparse_determine_best_xfer_encoding

(4.1.0 - 4.1.2 only, PECL)

mailparse_determine_best_xfer_encoding -- 最も適したエンコーディングを取得する

説明

string mailparse_determine_best_xfer_encoding ( resource fp )

ファイルポインタから内容を読み込む際に最も適したエンコーディングを調べます。

パラメータ

fp

有効なファイルポインタ。これはシーク可能である必要があります。

返り値

mbstring モジュールがサポートする文字エンコーディングのいずれかを返します。

例 1. mailparse_determine_best_xfer_encoding() の例

<?php

$fp
= fopen('somemail.eml', 'r');
echo
'Best encoding: ' . mailparse_determine_best_xfer_encoding($fp);

?>

上の例の出力は、たとえば 以下のようになります。

Best encoding: 7bit