$file="abcd.jpg"; pathinfo($file, PATHINFO_EXTENSION);
jpg
由于没有【.】,故而在操作的时候需要自行添加【.】。
$file="asdasd.jpg"; $newFileName=uniqid().".".pathinfo($file, PATHINFO_EXTENSION); echo $newFileName;
完毕。