


Pseudo-static html PHP pseudo-static hides four methods of passing parameter names
Pseudo-static method one:
Copy the code The code is as follows:
//Pseudo-static method one
// localhost/php100/test.php?id|1@action|2
$ Php2Html_FileUrl = $_SERVER["REQUEST_URI"];
echo $Php2Html_FileUrl."
";
// /php100/test.php?id|1@action|2
$Php2Html_UrlString = str_replace("?"," ",str_replace("/", "", strrchr(strrchr($Php2Html_FileUrl, "/"),"?")));
echo $Php2Html_UrlString."
";
// id|1@action |2
$Php2Html_UrlQueryStrList = explode("@", $Php2Html_UrlString);
print_r($Php2Html_UrlQueryStrList);
// Array ( [0] => id|1 [1] => action|2 ) echo "< ;br>";
foreach($Php2Html_UrlQueryStrList as $Php2Html_UrlQueryStr) {
$Php2Html_TmpArray = explode("|", $Php2Html_UrlQueryStr);
print_r($Php2Html_TmpArray);
// Array ( [0] =& gt; id [1 ] => 1 ) ; Array ( [0] => action [1] => 2 )
echo "
";
$_GET[$Php2Html_TmpArray[0]] = $Php2Html_TmpArray[1];
}
//echo 'False static: $_GET variable
';
print_r($_GET);
// Array ( [id|1@action|2] => [id] => ; 1 [action] => 2 ) echo "
";
echo "
";
echo $_GET[id]."
";
// 1 echo $_GET[ action];
// 2
?>
Copy code The code is as follows:
Pseudo-static method two:
//Pseudo-static method two
// localhost/php100 /test.php/1/2
$filename = basename($_SERVER['SCRIPT_NAME']);
echo $_SERVER['SCRIPT_NAME']."
";// /php100/test.php
echo $filename."
";// test.php
if(strtolower($filename)=='test.php'){
if(!empty($_GET[id])){
$id= intval($_GET[id]);
echo $id."
";
$action=intval($_GET[action]);
echo $action."
";
}else{
$nav=$_SERVER['REQUEST_URI'];
echo "1:".$nav."
";// /php100/test.php/1/2
$script=$_SERVER['SCRIPT_NAME '];
echo "2:".$script."
";// /php100/test.php
$nav=ereg_replace("^$script","",urldecode($nav));
echo $nav."
"; // /1/2
$vars=explode("/",$nav);
print_r($vars);// Array ( [0] => [ 1] => 1 [2] => 2 )
echo "
";
$id=intval($vars[1]);
$action=intval($vars[2]);
}
echo $id.'&'.$action;
}
?>
Pseudo-static method three:
Copy code The code is as follows:
//Pseudo-static Method three
function mod_rewrite(){
global $_GET;
$nav=$_SERVER["REQUEST_URI"];
echo $nav."
";
$script_name=$_SERVER["SCRIPT_NAME"];
echo $script_name."
";
$nav=substr(ereg_replace("^$script_name","",urldecode($nav)),1);
echo $nav."
";
$nav=preg_replace("/^.ht(m){1}(l){0,1}$/","",$nav);//This sentence is the .html or .htm with the tail removed
echo $nav."
";
$vars = explode("/",$nav);
print_r($vars);
echo "
";
for($i=0;$ i
}
return $_GET;
}
mod_rewrite() ;
$year=$_GET["year"];//The result is '2006'
echo $year."
";
$action=$_GET["action"];//The result is '_add '
echo $action;
?>
Pseudo-static method four:
Copy code The code is as follows:
//Pseudo-static method four
//Use server variables to obtain The PATH_INFO information in this example is /1,100,8630.html, which is the part after the execution script name
if(@$path_info =$_SERVER["PATH_INFO"]){
//Regular match parameters
if(preg_match("/ /(d+),(d+),(d+).html/si",$path_info,$arr_path)){
$gid=intval($arr_path[1]); //Get value 1
$sid=intval( $arr_path[2]); //Get the value 100
$softid=intval($arr_path[3]); //Get the value 8630
}else die("Path:Error!");
//Equivalent to soft. php?gid=1&sid=100&softid=8630
}else die('Path:Nothing!');
?>
The above introduces the four methods of pseudo-static html PHP pseudo-static hidden transmission parameter names, including pseudo-static html content. I hope it will be helpful to friends who are interested in PHP tutorials.

The article discusses PHP Data Objects (PDO), an extension for database access in PHP. It highlights PDO's role in enhancing security through prepared statements and its benefits over MySQLi, including database abstraction and better error handling.

Memcache and Memcached are PHP caching systems that speed up web apps by reducing database load. A single instance can be shared among projects with careful key management.

Article discusses steps to create and manage MySQL databases using PHP, focusing on connection, creation, common errors, and security measures.

The article discusses how JavaScript and PHP interact indirectly through HTTP requests due to their different environments. It covers methods for sending data from JavaScript to PHP and highlights security considerations like data validation and prot

The article discusses executing PHP scripts from the command line, including steps, common options, troubleshooting errors, and security considerations.

PEAR is a PHP framework for reusable components, enhancing development with package management, coding standards, and community support.

PHP is a versatile scripting language used mainly for web development, creating dynamic pages, and can also be utilized for command-line scripting, desktop apps, and API development.

The article discusses PHP's evolution from "Personal Home Page Tools" in 1995 to "PHP: Hypertext Preprocessor" in 1998, reflecting its expanded use beyond personal websites.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
