首頁 > 後端開發 > php教程 > 如何在 PHP 中可靠地確定文件內容類型?

如何在 PHP 中可靠地確定文件內容類型?

Linda Hamilton
發布: 2024-11-15 05:26:02
原創
616 人瀏覽過

How to Reliably Determine File Content-Type in PHP?

在PHP 中確定文件內容類型

在PHP 中,在將文件作為文件發送時確定其內容類型至關重要電子郵件附件。這可確保標頭中指定正確的 MIME 類型,從而允許接收軟體正確處理文件。

取得Content-Type

建議的方法是利用getFileMimeType() 函數:

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

    if (!$type || in_array($type, array('application/octet-stream', 'text/plain'))) {
        $secondOpinion = exec('file -b --mime-type ' . escapeshellarg($file), $foo, $returnCode);
        if ($returnCode === 0 && $secondOpinion) {
            $type = $secondOpinion;
        }
    }

    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;
}
登入後複製

此函數嘗試使用各種方法來決定內容類型,包括:

  • PHP 的finfo函數(如果可用)
    Upgrade.php 庫中的 *mime_content_type()
  • 作業系統的檔案命令(對於 *NIX 系統)
  • 用於映像檔的exif_imagetype()

透過利用多種方法,此函數為取得正確的內容類型提供了可靠的解決方案,無論作業系統或 PHP 環境如何。

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

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