php下实现伪 url 的超简单方法[转]
作者:bea
就像我的日志中的地址路径一样,让index.php?action=one&do=two 变成:?index/action/one/do/two 代码如下: index.php -------------- <?php //PARSINGQUERYSTRING $QS=explode("&",$_SERVER['QUERY_STRING']); $QS=explode('/',$QS[0]); //IFModulisUndefineds
就像我的日志中的地址路径一样,让 index.php?action=one&do=two
变成: ?index/action/one/do/two
代码如下:
index.php
--------------
<?php
// PARSING QUERY STRING
$QS=explode("&",$_SERVER['QUERY_STRING']);
$QS=explode('/',$QS[0]);
// IF Modul is Undefined set it to index
if (!$QS[0]) $MODUL='index';
else $MODUL=strtolower($QS[0]);
// WE can make a Variable $_QUERY
// for alternative _GET
for ($i=1;$i<count($QS);$i+=2)
{
$_QUERY[$NVAR]=$NVAR=$QS[$i];
$$NVAR=$QS[$i+1];
}
// Check the Modul is exists?
if (!file_exists("modul_directory/{ $MODUL }.php"))
$MODUL="index";
#### THIS IS EXAMPLE TO IMPLEMENTATION THE SCRIPT
// Load The Template
include("template.php");
// Load The Module
include("modul_directory/{ $MODUL }.php");
// Load The Footer
include("footer.php");
?>
we can access the modul in URL like this:
=================================
www.example.com/?forum/topic/20
- it mean load the modul forum.php, and set the _QUERY['topic']=20
www.foo.com/?voting/id/54/type/piechart&choice=2
- it mean load the modul voting.php, and set the _QUERY['id']=54 and _QUERY['type']='piechart' and set _GET['choice']=2
有用 | 无用
变成: ?index/action/one/do/two
代码如下:
index.php
--------------
<?php
// PARSING QUERY STRING
$QS=explode("&",$_SERVER['QUERY_STRING']);
$QS=explode('/',$QS[0]);
// IF Modul is Undefined set it to index
if (!$QS[0]) $MODUL='index';
else $MODUL=strtolower($QS[0]);
// WE can make a Variable $_QUERY
// for alternative _GET
for ($i=1;$i<count($QS);$i+=2)
{
$_QUERY[$NVAR]=$NVAR=$QS[$i];
$$NVAR=$QS[$i+1];
}
// Check the Modul is exists?
if (!file_exists("modul_directory/{ $MODUL }.php"))
$MODUL="index";
#### THIS IS EXAMPLE TO IMPLEMENTATION THE SCRIPT
// Load The Template
include("template.php");
// Load The Module
include("modul_directory/{ $MODUL }.php");
// Load The Footer
include("footer.php");
?>
we can access the modul in URL like this:
=================================
www.example.com/?forum/topic/20
- it mean load the modul forum.php, and set the _QUERY['topic']=20
www.foo.com/?voting/id/54/type/piechart&choice=2
- it mean load the modul voting.php, and set the _QUERY['id']=54 and _QUERY['type']='piechart' and set _GET['choice']=2
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP编程中字符串处理的5个技巧小结
- 表单复选框向PHP传输数据的代码
- [PHP]实用函数10
- [PHP]实用函数9
- [PHP]实用函数8
- [PHP]实用函数7
- [PHP]实用函数6
- [PHP]实用函数5
- [PHP]实用函数4
- [PHP]实用函数3
- [PHP]实用函数2
- [PHP]经常用到的实用函数集合
- 一个图形显示IP的PHP程序代码
- php在线生成ico文件的代码
- pw的一个放后门的方法分析
- 使用 eAccelerator加速PHP代码的方法
- 实现php加速的eAccelerator dll支持文件打包下载
- 用windows下编译过的eAccelerator for PHP 5.1.6实现php加速的使用方法
- 一些常用的php简单命令代码集锦