PHP 文件扩展名 获取函数

前端之家收集整理的这篇文章主要介绍了PHP 文件扩展名 获取函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="46613" class="copybut" id="copybut46613" onclick="doCopy('code46613')"> 代码如下:

<div class="codebody" id="code46613">@H_404_2@<?PHP @H_404_2@$file = "/home/lvyaozu/backup20080115.txt"; for($i=1; $i < 6; $i++) { @H404_2@$func = 'get_fileext' . $i; @H_404_2@vardump($func($file)); @H4042@} @H404_2@function get_file_ext1($file) { @H4042@return strtolower(trim(substr(strrchr($file,'.'),1))); @H404_2@} function get_file_ext2($file) { @H404_2@return strtolower(trim(pathinfo($file,PATHINFOEXTENSION))); @H404_2@} function get_file_ext3($file) { @H4042@return strtolower(trim(substr($file,strrpos($file,'.')+1))); @H404_2@} function get_file_ext4($file) { @H404_2@return strtolower(trim(arraypop(explode('.',$file)))); @H404_2@} function get_file_ext5($file) { @H4042@$tok = strtok($file,'.'); @H4042@while($tok !== false) { @H4042@$return = $tok; @H4042@$tok = strtok('.'); @H4042@} @H4042@return strtolower(trim($return)); @H4042@} @H404_2@?> 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/lvyaozu/archive/2009/06/03/4237628.aspx@H_404_2@

猜你在找的PHP相关文章