这个函数可以快速获取文件的扩展名即后缀 function getExtension($filename){ $myext = substr($filename, strrpos($filename, '.')); return str_replace('.','',$myext); } 使用
$filename = '我的文档.doc'; echo getExtension($filename);
本文共 255 字,大约阅读时间需要 1 分钟。
这个函数可以快速获取文件的扩展名即后缀 function getExtension($filename){ $myext = substr($filename, strrpos($filename, '.')); return str_replace('.','',$myext); } 使用
$filename = '我的文档.doc'; echo getExtension($filename);
转载于:https://www.cnblogs.com/cgdblog/p/7382356.html