如何在PHP中获取文件的内容类型?

时间:2009-08-05 11:52:39

标签: php email content-type file-get-contents

我正在使用PHP发送带附件的电子邮件。附件可以是几种不同文件类型中的任何一种(pdf,txt,doc,swf等)。

首先,脚本使用“file_get_contents”获取文件。

稍后,脚本在标题中回显:

Content-Type: <?php echo $the_content_type; ?>; name="<?php echo $the_file_name; ?>"

如何为 $ the_content_type 设置正确的值?

10 个答案:

答案 0 :(得分:26)

我正在使用此功能,其中包含几个回退以补偿旧版本的PHP或仅仅是错误的结果:

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函数。如果这些不可用,则使用mime_content_type替代方案,并包含Upgrade.php库中的替代品,以确保存在。如果那些没有返回任何有用的东西,它将尝试OS'file命令。只有在* NIX系统上可用的AFAIK,如果您计划在Windows上使用它,您可能想要更改或删除它。如果没有任何效果,它会尝试exif_imagetype作为图像的后备。

我注意到不同的服务器对mime类型函数的支持差异很大,而且upgrade.php mime_content_type的替换远非完美。有限的exif_imagetype函数,无论是原始函数还是Upgrade.php替换函数,都可以非常可靠地工作。如果你只关心图像,你可能只想使用最后一个。

答案 1 :(得分:6)

答案 2 :(得分:5)

很容易在php中使用它。

只需调用以下php函数mime_content_type

即可
<?php
    $filelink= 'uploads/some_file.pdf';
    $the_content_type = "";

    // check if the file exist before
    if(is_file($file_link)) {
        $the_content_type = mime_content_type($file_link);
    }
    // You can now use it here.

?>

PHP documentation of the function mime_content_type() 希望它可以帮助某人

答案 3 :(得分:4)

以下是使用PHP {5和PECL中提供的finfo_open的示例:

$mimepath='/usr/share/magic'; // may differ depending on your machine
// try /usr/share/file/magic if it doesn't work
$mime = finfo_open(FILEINFO_MIME,$mimepath);
if ($mime===FALSE) {
 throw new Exception('Unable to open finfo');
}
$filetype = finfo_file($mime,$tmpFileName);
finfo_close($mime);
if ($filetype===FALSE) {
 throw new Exception('Unable to recognise filetype');
}

或者,您可以使用已弃用的 mime_ content_ type 函数:

$filetype=mime_content_type($tmpFileName);

或在内置函数中使用OS:

ob_start();
system('/usr/bin/file -i -b ' . realpath($tmpFileName));
$type = ob_get_clean();
$parts = explode(';', $type);
$filetype=trim($parts[0]);

答案 4 :(得分:2)

function getMimeType( $filename ) {
        $realpath = realpath( $filename );
        if ( $realpath
                && function_exists( 'finfo_file' )
                && function_exists( 'finfo_open' )
                && defined( 'FILEINFO_MIME_TYPE' )
        ) {
                // Use the Fileinfo PECL extension (PHP 5.3+)
                return finfo_file( finfo_open( FILEINFO_MIME_TYPE ), $realpath );
        }
        if ( function_exists( 'mime_content_type' ) ) {
                // Deprecated in PHP 5.3
                return mime_content_type( $realpath );
        }
        return false;
}

这对我有用

Why is mime_content_type() deprecated in PHP?

答案 5 :(得分:0)

我想我找到了一个简短的方法。 使用以下方法获取图像大小:

$infFil=getimagesize($the_file_name);

Content-Type: <?php echo $infFil["mime"] ?>; name="<?php echo $the_file_name; ?>"

getimagesize返回一个具有MIME密钥

的关联数组

我用它并且它有效

答案 6 :(得分:0)

我已经尝试了大部分建议,但它们都失败了(我正处于任何有用的PHP版本之间。我最终得到了以下功能:

function getShellFileMimetype($file) {
    $type = shell_exec('file -i -b '. escapeshellcmd( realpath($_SERVER['DOCUMENT_ROOT'].$file)) );
    if( strpos($type, ";")!==false ){
        $type = current(explode(";", $type));
    }
    return $type;
}

答案 7 :(得分:-2)

有功能标题:

 header('Content-Type: '.$the_content_type);

请注意,此功能必须在之前调用任何输出。您可以在参考http://php.net/header

中找到更多详细信息

修改

Ops,我误解了这个问题: 从php 4.0开始,有一个函数mime_content_type来检测文件的mimetype。

在不推荐使用php 5时,应该用file info函数集代替。

答案 8 :(得分:-3)

我真的建议使用类似“CodeIgniter”的框架来发送电子邮件。这是一个关于“仅用18分钟发送带有CodeIgniter的电子邮件”的截屏视频。

http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-3/

答案 9 :(得分:-3)

试试这个:

function ftype($f) {
                    curl_setopt_array(($c = @curl_init((!preg_match("/[a-z]+:\/{2}(?:www\.)?/i",$f) ? sprintf("%s://%s/%s", "http" , $_SERVER['HTTP_HOST'],$f) :  $f))), array(CURLOPT_RETURNTRANSFER => 1, CURLOPT_HEADER => 1));
                        return(preg_match("/Type:\s*(?<mime_type>[^\n]+)/i", @curl_exec($c), $m) && curl_getinfo($c, CURLINFO_HTTP_CODE) != 404)  ? ($m["mime_type"]) : 0;

         }
echo ftype("http://img2.orkut.com/images/medium/1283204135/604747203/ln.jpg"); // print image/jpeg