PHP 伪静态隐藏传递参数名的四种方法

2019-04-10 00:47:19丽君

//伪静态方法四
//利用server变量 取得PATH_INFO信息 该例中为 /1,100,8630.html 也就是执行脚本名后面的部分
if(@$path_info =$_SERVER["PATH_INFO"]){
//正则匹配一下参数
if(preg_match("//(d+),(d+),(d+).html/si",$path_info,$arr_path)){
$gid=intval($arr_path[1]); //取得值 1
$sid=intval($arr_path[2]); //取得值100
$softid=intval($arr_path[3]); //取得值8630
}else die("Path:Error!");
//相当于soft.php?gid=1&sid=100&softid=8630
}else die('Path:Nothing!');
?>
相关文章 大家在看