如何在 PHP 中確定電子郵件附件的內容類型?

Mary-Kate Olsen
發布: 2024-11-21 11:08:10
原創
705 人瀏覽過

How to Determine the Content-Type of Email Attachments in PHP?

在PHP 中確定電子郵件附件的文件內容類型

在PHP 中,發送帶有文件附件的電子郵件需要指定以下內容的內容類型文件。此資訊使電子郵件用戶端能夠正確解釋和顯示附件。本文介紹如何為此目的正確設定 $the_content_type 變數。

解:

一種方法涉及使用getFileMimeType() 函數,該函數使用一系列處理不同PHP 版本和不可靠mime 類型函數的後備:

function getFileMimeType($file) {
    // Try finfo_file
    if (function_exists('finfo_file')) {
        $finfo = finfo_open(FILEINFO_MIME_TYPE);
        $type = finfo_file($finfo, $file);
        finfo_close($finfo);
    }
    // Try mime_content_type
    else {
        require_once 'upgradephp/ext/mime.php';
        $type = mime_content_type($file);
    }

    // Check for unreliable results
    if (!$type || in_array($type, array('application/octet-stream', 'text/plain'))) {
        // Try file command (only available on *NIX systems)
        $secondOpinion = exec('file -b --mime-type ' . escapeshellarg($file), $foo, $returnCode);
        if ($returnCode === 0 && $secondOpinion) {
            $type = $secondOpinion;
        }
    }

    // Try exif_imagetype for images
    if (!$type || in_array($type, array('application/octet-stream', 'text/plain'))) {
        require_once 'upgradephp/ext/mime.php';
        $exifImageType = exif_imagetype($file);
        if ($exifImageType !== false) {
            $type = image_type_to_mime_type($exifImageType);
        }
    }

    return $type;
}
登入後複製

此函數依序嘗試本機finfo_file、mime_content_type、file command 和exif_imagetype 函數來決定內容類型。如果其中一種方法傳回可靠的結果,則使用它。否則,函數傳回後備內容類型。

確定內容類型後,您可以如下設定$the_content_type 變數:

$the_content_type = getFileMimeType($filepath);
登入後複製

此方法提供了強大的功能用於在PHP 中確定各種檔案類型的內容類型的解決方案,確保電子郵件用戶端正確顯示您的電子郵件附件。

以上是如何在 PHP 中確定電子郵件附件的內容類型?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板