头像

获取文件后缀的9种方法

2018-05-22 14:50:57 来源:PHP代码   浏览()   评论 ( 0 )   

<?php
//第一种
// function get_extension($file)
// {
//  $file = explode('.', $file);
//     return end($file);
// }
//第二种
 
// function get_extension($file)
// {
//     return substr(strrchr($file, '.'), 1);
// }
 
 
//第三种
// function get_extension($file){
//  return pathinfo($file)['extension'];
// }
// 
 
 
//第四种
//function get_extension($file)
//{
//    return substr($file, strrpos($file, '.') + 1);
//}
 
//第五种
//function get_extension($file)
//{
//  $file = preg_split('/\./', $file);
//    return end($file);
//}
 
 
//第六种
// function   get_extension($file){
//  $file = strrev($file);
//     return strrev(substr($file,0,strpos($file,'.')));
// }
//
 
//第七种
// function get_extension($file)
// {
//     return pathinfo($file, PATHINFO_EXTENSION);
// }
// 
//第八种
// function get_extension($file)
// {
//      preg_match_all('/\.[a-zA-Z0-9]+/',$file,$data);
//      return !empty($data[0])?substr(end($data[0]),1):'';
// }
 
 
//第九种
// function get_extension($file){
//     return str_replace('.','',strrchr($file,'.'));
// }
 
 
//暂时想这么多,以后想起来再补充
 
$file = "http://php.webp";
 
$data = get_extension($file);
 
var_export($data);


标签: php
声明:转载请注明来源(PHP代码)并保留原文链接:http://www.phpdaima.com//jishu-113.html
广告不存在
评论0

后面还有条评论,点击查看>>

温馨提示:为规范评论内容,垃圾评论一律封号...