伪静态处理之二

ci-->方法截取/后边的值

//创建方法后参数,并赋值
function wiki($cid="",$cname="头条"){
	header("Content-Type: text/html; charset=utf-8");
	$_GET["cid"] = $cid;
	
	//截取字符串 aa.html
	$n=strpos($cname,'.');//寻找位置
	if ($n) $cname=substr($cname,0,$n);//删除后面
	//或者 $aid=str_replace(".html","",$aid); 
	
	//urldecode处理浏览器乱码
	$_GET["cname"] =  urldecode($cname);
}

url = localhost/webtest/index.php/web/wiki/123/aa.html


你可能感兴趣的:(伪静态处理之二)