闲者博客 - 扩展名 https://bk1314.com/tag/%E6%89%A9%E5%B1%95%E5%90%8D/ zh-CN Fri, 25 Feb 2022 18:49:56 +0800 Fri, 25 Feb 2022 18:49:56 +0800 PHP获取文件扩展名(后缀) https://bk1314.com/37.html https://bk1314.com/37.html Fri, 25 Feb 2022 18:49:56 +0800 飞鱼 function getExtension($filename){ $myext = substr($filename, strrpos($filename, '.')); return str_replace('.','',$myext); } $filename = '我的文档.doc'; echo getExtension($filename); ]]> 0 https://bk1314.com/37.html#comments https://bk1314.com/feed/tag/%E6%89%A9%E5%B1%95%E5%90%8D/