💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 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 ?> ``` ```