在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中文網其他相關文章!