PHP 文件扩展名 获取函数
作者:bea
代码如下: <?php $file = "/home/lvyaozu/backup_20080115.txt"; for($i=1; $i < 6; $i++) { $func = 'get_file_ext_' . $i; var_dump($func($file)); } function get_file_ext_1($file) { return strtolower(trim(substr(strrchr($file, '.'),
代码如下:
<?php
$file = "/home/lvyaozu/backup_20080115.txt";
for($i=1; $i < 6; $i++) {
$func = 'get_file_ext_' . $i;
var_dump($func($file));
}
function get_file_ext_1($file) {
return strtolower(trim(substr(strrchr($file, '.'), 1)));
}
function get_file_ext_2($file) {
return strtolower(trim(pathinfo($file, PATHINFO_EXTENSION)));
}
function get_file_ext_3($file) {
return strtolower(trim(substr($file, strrpos($file, '.')+1)));
}
function get_file_ext_4($file) {
return strtolower(trim(array_pop(explode('.', $file))));
}
function get_file_ext_5($file) {
$tok = strtok($file, '.');
while($tok !== false) {
$return = $tok;
$tok = strtok('.');
}
return strtolower(trim($return));
}
?>
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/lvyaozu/archive/2009/06/03/4237628.aspx
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP 木马攻击防御技巧
- C# Assembly类访问程序集信息
- php adodb连接mssql解决乱码问题
- php array_map array_multisort 高效处理多维数组排序
- php MsSql server时遇到的中文编码问题
- php 分页类 扩展代码
- PHP 输出简单动态WAP页面
- Windows PHP5和Apache的安装与配置
- phpMyAdmin 安装配置方法和问题解决
- IIS6+PHP5+MySQL5+Zend Optimizer+phpMyAdmin安装配置图文教程 2009年
- Windows Apache2.2.11及Php5.2.9-1的安装与配置方法
- Windows IIS PHP 5.2 安装与配置方法
- PHP 组件化编程技巧
- PHP加速 eAccelerator配置和使用指南
- php 更新数据库中断的解决方法
- php split汉字
- phpinfo 系统查看参数函数代码
- PHP 字符串 小常识
- PHP 批量删除 sql语句