ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的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 ?> ``` ```