在PHP 中確定文件的內容類型
發送帶有附件的電子郵件時,指定正確的內容至關重要鍵入該文件。這將指導電子郵件用戶端正確處理文件。在 PHP 中,您可以使用各種方法檢索內容類型。
使用'finfo_file()'(建議)
如果您的PHP 版本支援finfo 擴展,您可以利用'finfo_file()'來取得檔案的mime類型。以下是範例:
$finfo = finfo_open(FILEINFO_MIME_TYPE); $contentType = finfo_file($finfo, $file); finfo_close($finfo);
使用「mime_content_type()」
「finfo_file()」的較舊替代方法是「mime_content_type()」函數。但是,它可能不適用於所有 PHP 版本。
require_once 'upgradephp/ext/mime.php'; // Load the mime extension if necessary $contentType = mime_content_type($file);
後備選項
如果上述方法都無法提供可靠的結果,您可以考慮使用這些後備選項:
範例用法
這是一個組合了所有這些選項的範例:
function getFileMimeType($file) { $contentType = null; if (function_exists('finfo_file')) { $finfo = finfo_open(FILEINFO_MIME_TYPE); $contentType = finfo_file($finfo, $file); finfo_close($finfo); } elseif (function_exists('mime_content_type')) { require_once 'upgradephp/ext/mime.php'; $contentType = mime_content_type($file); } elseif (is_file($file)) { // Executing 'file' command } elseif (@exif_imagetype($file)) { // Determining image mime type } return $contentType; }
以上是如何在 PHP 中確定文件的內容類型?的詳細內容。更多資訊請關注PHP中文網其他相關文章!