PHP:6种方法获取文件的扩展名1、字符串查找和截取的方法1$extension=substr(strrchr($file,'.'),1);2、字符串查找和截取的方法二1$extension=substr($file,strrpos($file,'.')+1);3、数组分割的方法1$extension=end(explode('.',$file));4、使用pathinfo直接解析的方法12$info=pathinfo($file);$extension=$info['extension']...
查看全文