🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# file\_ext() ## file\_ext() ``` <pre class="calibre11">``` file_ext($filename, $max = 16) ``` ``` #### 【功能】 获取文件的后缀,不包含 .,可以设置最大长度。 #### 【参数】 ``` <pre class="calibre11">``` $filename:文件名 $max:最大长度(为了安全) ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; echo file_ext("abc.jpg.php"); // 结果:php ?> ``` ```