了解 PHP 中的內容類型識別
將文件附加到電子郵件時,準確確定其內容類型至關重要。 PHP 提供了各種方法來實現此目的。
用於確定內容類型的函數
為了滿足此需求,所提供的解決方案提供了以下函數:
function getFileMimeType($file) { // Attempt to use PHP finfo functions if (function_exists('finfo_file')) { $finfo = finfo_open(FILEINFO_MIME_TYPE); $type = finfo_file($finfo, $file); finfo_close($finfo); } // Fallback to mime_content_type alternative else { require_once 'upgradephp/ext/mime.php'; $type = mime_content_type($file); } // Further fallbacks if previous attempts failed if (!$type || in_array($type, array('application/octet-stream', 'text/plain'))) { // Use file command if available $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'))) { // Attempt to use exif_imagetype for images require_once 'upgradephp/ext/mime.php'; $exifImageType = exif_imagetype($file); if ($exifImageType !== false) { $type = image_type_to_mime_type($exifImageType); } } return $type; }
函數說明
此函數嘗試利用PHP 的finfo 函數來辨識mime類型。如果失敗,它將回退到 mime_content_type 函數。如果這些都不起作用,它會嘗試在 *NIX 系統上執行“file”命令。最後,它使用 exif_imagetype 來確定影像的 mime 類型。
值得注意的是,不同的伺服器對 mime 類型函數的支援不同,Upgrade.php mime_content_type 替換可能並不總是可靠。然而,exif_imagetype 函數往往在跨伺服器上表現一致。如果只關心圖像文件,您可以考慮僅使用此函數來確定 mime 類型。
以上是如何在 PHP 中確定文件的「Content-Type」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!