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