-
-
//将url转换成静态url
- function url_rewrite($file, $params = array (), $html = "", $rewrite = true) {
-
- if ($rewrite) { //开发阶段是不要rewrite,所在开发的时候,把$rewrite = false
- $url = ($file == 'index') ? '' : '/' . $file;
- if (! empty ( $params ) && is_array ( $params )) {
- $url .= '/' . implode ( '/', array_slice($params, 0 , 2));
- $param = array_slice($params, 2);
- foreach($param as $key => $value){
- $url .= '/' . $key . '/' . urlencode ( $value );
- }
- }
- if (! empty ( $html )) {
- $url .= '.' . $html;
- }
- } else {
- $url = ($file == 'index') ? '/' : '/' . $file;
-
- if (substr ( $url, - 4 ) != '.php' && $file != 'index') {
- $url .= '.php';
- }
-
- if (! empty ( $params ) && is_array ( $params )) {
- $url .= '?' . http_build_query ( $params );
- }
- }
- return $url;
- }
-
- echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank','page'=>5 ) );echo "
";
- //$rewrite = false的情况下,显示如下/test.php?class=User&act=check&name=tank
echo url_rewrite ( 'test.php', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo " ";
- //$rewrite = true的情况下,显示如下/test.php/User/check/tank
-
- echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ) );echo "
";
- //$rewrite = true的情况下,显示如下/test/User/check/tank
echo url_rewrite ( 'test', array ('class' => "User", 'act' => 'check', 'name' => 'tank' ), 'html' );echo " ";
- //$rewrite = true的情况下,显示如下/test/User/check/tank.html
- ?>
-
复制代码
"User",'act'=>'check','name'=>'tank'));?>">test
以上把动态url转换成静态的url,页面中会产生链接如下:
test
此时如果直接点击的话,肯定会报404错误的,因为根不可能找到tank这个目录的。
需要要把找不到的目录和文件指定一个php文件。这个需要用到apache,nginx,或htaccess等。
三,指定一个统一入口
-
- RewriteCond %{REQUEST_FILENAME} !-f //找不到文件
- RewriteCond %{REQUEST_FILENAME} !-d //打不到目录
- RewriteRule . /test3/index.php [L]
复制代码
代码说明:
如果找不到目录转到index.php文件,如果找不到文件,也转到index.php。
当访问http://localhost/test3/test.php/User/check/tank时候,就会转到index.php。
以下内容都是以http://localhost/test3/test.php/User/check/tank这种重写的方式来操作的。
四,index.php文件
-
-
$filename = $_SERVER['REQUEST_URI']; //请求的url
-
- /**请求的url,"/test3/test.php/User/check/tank"
- * test.php 要去的php文件
- * User 是class名
- * check 是class中的方法名
- * tank 是要传到check的参数
- * by bbs.it-home.org
- */
-
- preg_match("/(\w+\.php)/",$filename,$match); //查找php文件名
-
- $array = explode('/',$filename); //将静态url进行分割
-
- $key = array_keys($array,$match[0]); //得到文件所对应的下标Array ( [0] => 2 )
- $file_array = array_slice($array,0,$key[0]+1); //Array ( [0] => [1] => test3 [2] => test.php )
- $param_array = array_slice($array,$key[0]+1); //Array ( [0] => User [1] => check [2] => tank )
-
- $file_path = implode('/',$file_array);
-
- if($array[$key[0]] != "index.php"){
- include_once($array[$key[0]]); //包函请求url中的php文件,在这里是test.php
- }
-
- if(class_exists($param_array[0])){ //判断一下test.php这个文件中有没有User这个class
-
- $obj = new $param_array[0];
- if(method_exists($obj,$param_array[1])){ //判断一下User这个class中有有没有check这个方法
- $obj->$param_array[1]($param_array[3]); //调用这个方法,结果是(我的名子叫tank)
- }
- }
- ?>
复制代码
五,test.php文件
-
-
class User {
- public function check($name){
- echo "我的名子叫".$name;
- }
- }
- ?>
复制代码
至此,当访问http://localhost/test3/test.php/User/check/tank时,就不会报错了。
|