<?php $file=\'cdd.jpg\'; function get_extension1($file){ $a=substr(strrchr($file,\'.\'),1); echo $a; }function get_extension2($file){ $b=explode(\'.\',$file); $a=end($b); echo $a; } get_extension2($file); 相关文章: