AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# 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 ?> ``` ```