5.30以上的版本才能使用,继承了上一个版本的快速重定向的特点(单独类,全部使用静态调用),增添了一个很重要的功能和属性 可以调用其他url中的模块了 也使得模块与模块间或页面与页面间的函数简化共享得以实现
.htaccess文件写法:
- #-------------- .htaccess start ---------------
- RewriteEngine on
- RewriteRule !.(js|ico|gif|jpg|png|css教程|swf|htm|txt)$ index.php
- php_flag magic_quotes_gpc off
- php_flag register_globals off
- #-------------- .htaccess end ---------------
重写功能引入:让站点根目录的index.php末尾写上下列代码,重写就开启了(正常条件:1.apache的重写配置成功,且开启了.htaccess支持的.2.站点根目录的.htaccess文件设置好了.3.class.rewrite.php类文件在index.php前面部分加载了.4.页面模块文件位置及写法无误):
-
- Rewrite::__config(
- $config['path'],
- $config['md_path'],
- array(
- 'phpinfo'
- )
- );
- Rewrite::__parse();
-
模块文件写法: testPk.php
- <?php
- class Rw_testPk extends Rewrite {
-
- public static function init(){
-
- echo self::$linktag.'<br/>';
-
- }
-
- public static function index(){
- echo 'test';
- }
-
- public static function blank(){}
- }
- ?>
class.rewrite.php;
- <?php
- class Rewrite{
- public static $debug = false;
- public static $time_pass = 0;
- public static $version = 2.2;
- public static $pretag = 'Rw_';
- public static $linktag = 'index';
- protected static $time_start = 0;
- protected static $time_end = 0;
- protected static $physical_path = '';
- protected static $website_path = '';
- protected static $ob_contents = '';
- protected static $uid = 0;
-
- private static $allow_sys_fun = array();
- private static function __get_microtime(){
- list($usec, $sec) = explode(" ",microtime());
- return ((float)$usec + (float)$sec);
- }
-
- public static function __debug($d = true){
- static::$debug = $d;
- }
-
- public static function __config($website_path = '',$physical_path = '',$allow_sys_fun = array()){
- self::$physical_path = $physical_path;
- self::$website_path = $website_path;
- self::$allow_sys_fun = $allow_sys_fun;
- }
-
- public static function __msg($str){
- if(static::$debug){
- echo "n<pre>n".print_r($str,true)."n</pre>n";
- }
- }
-
- public static function __start(){
- self::$time_start = self::__get_microtime();
- }
-
- public static function __end($re = false){
- self::$time_end = self::__get_microtime();
- self::$time_pass = round((self::$time_end - self::$time_start),6) * 1000;
- if($re){
- return self::$time_pass;
- }else{
- self::__msg('PASS_TIME: '.self::$time_pass.' ms');
- }
- }
-
- public static function __parseurl($url = '',$fun = '',$data = NULL){
- if(!emptyempty($url)&&!emptyempty($fun)){
- $p = static::$physical_path;
- if(file_exists($p.$url) || file_exists($p.$url.'.php') ){
- $part = strtolower(basename( $p.$url , '.php' ));
- static::$linktag = $part.'/'.$fun;
- $fname = static::$pretag.$part;
- if(class_exists($fname, false)){
- if(method_exists($fname,$fun)){
- return $fname::$fun($data);
- }
- }else{
- include( $p.$url );
- if( class_exists($fname, false) && method_exists($fname,$fun)){
- return $fname::$fun($data);
- }
- }
- }
- }
- }
-
- public static function __parse($Url = ''){
- self::__start();
- $p = static::$physical_path;
- $w = static::$website_path;
- $req_execute = false;
- $url_p = emptyempty($Url) ? $_SERVER['REQUEST_URI'] : $Url;
- $local = parse_url($w);
- $req = parse_url($url_p);
- $req_path = preg_replace('|[^w/.\]|','',$req['path']);
- $req_para = emptyempty($Url) ? strstr($_SERVER['SERVER_NAME'],'.',true) : 'www';
- if(emptyempty($Url) && substr_count($_SERVER['SERVER_NAME'],'.') == 2 && $req_para != 'www'){
- self::__goto($req_para,preg_replace('|^'.$local['path'].'|',"",$req_path));
- return ;
- }else{
- $req_path_arr = emptyempty($req_path)?array():preg_split("|[/\]+|",preg_replace('|^'.$local['path'].'|',"",$req_path));
- $req_fun = array_pop($req_path_arr);
- if(substr($req_fun,0,2)=='__'){
- $req_fun = substr($req_fun,2);
- }
- $req_path_rearr = array_filter($req_path_arr);
- self::__msg($req_path_rearr);
- $req_temp = implode('/',$req_path_rearr);
- $fname = $req_temp.'/'.$req_fun;
- if(!emptyempty($req_fun)&&in_array($req_fun,static::$allow_sys_fun)){
- $req_fun();
- }else{
- if(!emptyempty($req_fun)&&file_exists($p.$fname.'.php') ){
- include( $p.$fname.'.php' );
- }else{
- $fname = emptyempty($req_temp) ? 'index' : $req_temp;
- if(file_exists($p.$fname.'.php') ){
- include( $p.$fname.'.php' );
- }else{
- $fname = $req_temp.'/index';
- if(file_exists($p.$fname.'.php')){
- include( $p.$fname.'.php' );
- }else{
-
-
- $uid = is_numeric($req_temp) ? $req_temp : strstr($req_temp, '/', true);
- $ufun = is_numeric($req_temp) ? 'index' : strstr($req_temp, '/');
- if(is_numeric($uid)){
- self::$uid = $uid;
- if(!isset($_GET['uid'])) $_GET['uid'] = $uid;
- $fname = 'profile/'.$ufun;
- if(file_exists($p.$fname.'.php')){
- include( $p.$fname.'.php' );
- }else{
- header("location:".$w);
- exit();
- }
- }else if(file_exists($p.'index.php')){
- $fname = 'index';
- include( $p.'index.php' );
- }else{
- header("location:".$w);
- exit();
- }
- }
- }
- }
- $ev_fname = strrpos($fname,'/')===false ? $fname : substr($fname,strrpos($fname,'/')+1);
- $ev_fname = static::$pretag.$ev_fname;
- if( class_exists($ev_fname, false) && method_exists($ev_fname,$req_fun)){
- static::$linktag = $req_fun=='index' ? $fname.'/' : $fname.'/'.$req_fun;
- if($req_fun != 'init' && method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::$req_fun();
- }else if( class_exists($ev_fname, false) && method_exists($ev_fname,'index') ){
- static::$linktag = $fname.'/';
- if(method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::index();
- }else if( $fname != 'index' && class_exists(static::$pretag.'index', false) && method_exists(static::$pretag.'index','index') ){
- $ev_fname = static::$pretag.'index';
- static::$linktag = 'index/';
- if(method_exists($ev_fname,'init')){
- $ev_fname::init();
- }
- $ev_fname::index();
- }else{
- self::__msg('Function Not Exist!');
- }
- }
- }
- self::__end();
- }
-
-
- public static function __goto($para = '',$path = ''){
- $w = static::$website_path;
- if(emptyempty($para)){
- exit('未知链接,解析失败,不能访问');
- }
- if(class_exists('Parseurl')){
- $prs = Parseurl::selectone(array('tag','=',$para));
- self::__msg($prs);
- if(!emptyempty($prs)){
- $parastr = $prs['tag'];
- $output = array();
- $_GET[$prs['idtag']] = $prs['id'];
- parse_str($prs['parastr'], $output);
- $_GET = array_merge($_GET,$output);
- $path = $prs['type'].'/'.preg_replace('|^/'.$prs['type'].'|','',$path);
- self::__msg($path);
- header('location:'.$w.$path.'?'.http_build_query($_GET));
- exit();
- }else{
- header("location:".$w);
- exit();
- }
- }else{
- header("location:".$w);
- exit();
- }
- }
- }
- ?>
|