gpt4 book ai didi

php - 如何在命令行中获取文件的 mimetype

转载 作者:搜寻专家 更新时间:2023-10-31 22:06:16 24 4
gpt4 key购买 nike

从文件中使用 finfo 获取 mimetype

$finfo = new finfo(FILEINFO_MIME);
$type = $finfo->file($file);

从字符串中使用 finfo 获取 mimetype

$finfo = new finfo(FILEINFO_MIME);
$type = $finfo->buffer($file);

在命令行中从文件获取mimetype

$type = shell_exec('file -bi '.escapeshellarg(realpath($file)));

如何从字符串中获取命令行中的 mimetype?

最佳答案

正如你的问题标签上写着“php, linux”,你最好试试这个。

$ mimetype <filename> 

示例:

$ mimetype index.php
index.php : application/x-php

关于php - 如何在命令行中获取文件的 mimetype,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18121231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com