码迷,mamicode.com
首页 > 其他好文 > 详细

获取文件名的扩展名

时间:2014-08-03 23:32:06      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:获取文件名的扩展名

文件名类型有:http://localhost/code/loginfile/index.ini.php?username=aaa

              E:\xampp\php/login.php

              login.php

function file_extension($url)
{
	//第一步:判断是否有问号"?"
	$file="";  //存储整个文件名称
	if (strstr($url,"?")){
		list($file)=explode("?", $url);
	}
	else
		$file=$url;
//	echo $file."<br>";
	
	//第二步:获取文件的名称
	$pos=strrpos($file, "/")+1;
//	echo $pos."<br>";
	$filename=substr($file,$pos);
//	echo $filename."<br>";
	//第三步:获取后缀名
	$arr=explode(".", $filename);
	$exname=array_pop($arr);
	echo $exname."<br>";
	
}
file_extension("http://localhost/code/loginfile/index.ini.php?username=aaa");
file_extension("E:\xampp\php/login.php");
file_extension("login.php");
file_extension("http://localhost/code/loginfile/index.ini.php?username=aaa");


获取文件名的扩展名,布布扣,bubuko.com

获取文件名的扩展名

标签:获取文件名的扩展名

原文地址:http://fengguangke.blog.51cto.com/6379465/1535100

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!