获取文件的后缀

函数

function get_ext($fileName){
	return strtolower( strrchr($fileName, '.') );
}

 

使用

遍历/etc/目录,获取每个文件的后缀

$handle = opendir('/etc/');
while($file_name = readdir($handle))
{
	if(is_dir($file_name)) continue;
	printf("文件%s的后缀是:%s<br/>",$file_name,get_ext($file_name));
}

 

输出

文件selinux的后缀是:
文件dracut.conf的后缀是:.conf
文件filesystems的后缀是:
文件motd的后缀是:
文件ConsoleKit的后缀是:
文件DIR_COLORS的后缀是:
...