php文件操作函数

file_exists("test.txt"); #判断文件是否存在

获取文件后缀名

pathinfo($fname, PATHINFO_EXTENSION) #获取文件后缀名
strrchr($fname, '.')