lsk007

<?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);

分类:

技术点:

相关文章: