标签:style blog color os io cti div log
1: function get_extension($file){ substr(strrchr($file, ‘.‘), 1); } 2: function get_extension($file){ return substr($file, strrpos($file, ‘.‘)+1); } 3: function get_extension($file){ return end(explode(‘.‘, $file)); } 4: function get_extension($file){ $info = pathinfo($file); return $info[‘extension‘]; } 5: function get_extension($file){ return pathinfo($file, PATHINFO_EXTENSION); }
标签:style blog color os io cti div log
原文地址:http://www.cnblogs.com/LoveJulin/p/3904549.html