扫码关注官方订阅号
网上找的方法都是知道文件后缀名的情况下~ 我现在的情况是只知道Url,比如http://site.com/photo,这是一个文件,但是没有把文件类型和后缀在上面表示出来,我接收到之后怎么用Php把他后缀或者文件类型获取到?
http://site.com/photo
Php
好吧,我是做微信的时候用户发过来的图片腾讯只给了我一个这样的url
人生最曼妙的风景,竟是内心的淡定与从容!
http://php.net/manual/en/function.finfo-buffer.php
大家写的代码很不高效呀
<?php echo `curl -Is 'http://s11.sinaimg.cn/mw690/e0571d75tx6Co4vJcUOfa&690' |grep "Content-Type:"`;
http://stackoverflow.com/questions/2610713/get-mime-type-of-external-file-using-curl-and-php
你应该通过 HTTP 头部里面的 Content-Type 来判断数据类型。
Content-Type
CodeIgniter 提供了一份比较完整的 Content-Type(即 MIME Type)和扩展名的对应表,你可以参考一下。
MIME Type
https://github.com/bcit-ci/CodeIgniter/blob/master/application/config/mimes.php
heheheh 玻璃心犯了
高端逼们,玩好不送!!
function online_filetype($url) { if (function_exists('curl_init')) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $results = explode("\n", trim(curl_exec($ch))); foreach($results as $line) { if (strtok($line, ':') == 'Content-Type') { $parts = explode(":", $line); return trim($parts[1]); } } }else { $url = parse_url($url); if ($fp = @fsockopen($url['host'], empty($url['port']) ? 80 : $url['port'], $error)) { fputs($fp, "GET " . (empty($url['path']) ? '/' : $url['path']) . " HTTP/1.1\r\n"); fputs($fp, "Host: {$url['host']}\r\n\r\n"); while (!feof($fp)) { $tmp = fgets($fp); if (trim($tmp) == '') { break; } else if (preg_match('/Content-Type:(.*)/si', $tmp, $arr)) { return trim((string)$arr[1]); } } return null; } else { return null; } } return null; }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
http://php.net/manual/en/function.finfo-buffer.php
大家写的代码很不高效呀
http://stackoverflow.com/questions/2610713/get-mime-type-of-external-file-using-curl-and-php
你应该通过 HTTP 头部里面的
Content-Type来判断数据类型。CodeIgniter 提供了一份比较完整的
Content-Type(即MIME Type)和扩展名的对应表,你可以参考一下。https://github.com/bcit-ci/CodeIgniter/blob/master/application/config/mimes.php
heheheh 玻璃心犯了
高端逼们,玩好不送!!