PHP 빠른 URL 재작성 예제 코드

WBOY
풀어 주다: 2016-07-25 09:12:20
원래의
1116명이 탐색했습니다.

버전 5.30 이상에서만 사용할 수 있습니다. 이전 버전의 빠른 리디렉션 특성(별도의 클래스, 모두 정적 호출 사용)을 상속하고, 다른 모듈을 호출할 수 있는 매우 중요한 기능과 속성을 추가합니다. 또한 URL을 사용하면 모듈 간 또는 페이지 간 기능 공유가 단순화됩니다. .htaccess 파일 작성 방법:

  1. #--------------- .htaccess 시작 -------------- -
  2. RewriteEngine 켜기
  3. RewriteRule !.(js|ico|gif|jpg|png|css|swf|htm|txt)$ index.php
  4. php_flag Magic_quotes_gpc 끄기
  5. php_flag Register_globals 끄기
  6. #--------------- .htaccess end ---------------
코드 복사

재작성 기능 도입: 사이트 루트 디렉터리의 index.php 끝에 다음 코드를 작성하면 재작성이 활성화됩니다. (정상 조건: 1. Apache의 재작성 구성이 성공하고 .htaccess 지원 활성화됨 .2. 사이트 루트 디렉터리에 .htaccess 파일이 설정됩니다. 3. index.php 앞부분에 class.rewrite.php 클래스 파일이 로드됩니다. 4. 페이지 모듈 파일의 위치 및 작성. 정확합니다): 코드는 다음과 같습니다:

  1. //......
  2. 다시 작성::__config(
  3. $config['path'] ,/*'http: //xxxxx/mysite/'URL 기본 위치*/
  4. $config['md_path'],/*'c:/phpsite/www/mysite/modules/'모듈 파일 물리적 디렉터리*/
  5. 배열(
  6. 'phpinfo'
  7. )
  8. );
  9. 다시 작성::__parse();
  10. //....
코드 복사

모듈 파일 작성 방법: testPk.php

  1. class Rw_testPk extends Rewrite {
  2. //testpk 페이지에 액세스하는 한 이것이 선두 함수입니다. 이것은 확실히 실행될 것이며 이 페이지 또는 이 페이지의 전역 변수 내에서 함수 액세스 권한을 제어하는 ​​데 사용될 수 있습니다
  3. public static function init(){
  4. //if (!definition('SITE_PASS')){
  5. echo self::$ linktag.'
    ';//self::$linktag는 자주 사용되는 페이지 파싱 위치 경로 값입니다.
  6. //}
  7. }
  8. //"http:// /bbs.it-home.org/testpk/"에 접속할 때
  9. public static function index(){
  10. echo 'test';
  11. }
  12. 하면 실행됩니다. //"http://bbs .it-home.org/testpk/blank"에 접속하면 "http://bbs.it-home.org/testpk/index/blank"로 실행되거나 쓰여집니다. 일반적으로 "index/ "는 생략 가능
  13. 공용 정적 함수 공백(){}
  14. }
  15. ?>
코드 복사

class.rewrite.php; 코드는 다음과 같습니다:

  1. class Rewrite{
  2. public static $debug = false;//디버깅 활성화 여부
  3. public static $time_pass = 0; //모듈 파일의 전체 실행 시간을 가져옵니다
  4. public static $version = 2.2;
  5. public static $pretag = 'Rw_';//모듈 파일 클래스의 이름 접두사
  6. public static $linktag = 'index'; //파싱 중인 링크를 표시하는 데 사용되는 페이지 링크 태그이며 다양한 메뉴 효과 및 링크 액세스 권한을 제어하는 ​​데 사용할 수 있습니다.
  7. protected static $time_start = 0;
  8. protected static $time_end = 0;
  9. protected static $physical_path = '';//모듈 파일의 물리적 경로
  10. protected static $website_path = '';//모듈 파일의 사이트 경로입니다. 다음과 같은 사이트의 하위 디렉토리로 확장됩니다: http://bbs.it-home.org/site/mysite
  11. protected static $ob_contents = '';
  12. protected static $uid = 0;// http://bbs.it-home.org/423/ 등 개인 홈페이지 접속 방법에 따라 http://bbs.it-home.org/profile?uid=423
  13. //allowed에 접속합니다. $allow_sys_fun=array('phpinfo')와 같은 시스템 기능을 사용하면 http://bbs.it-home.org/phpinfo 또는 http://bbs.it-home일 때 시스템이 phpinfo 콘텐츠에 액세스하는 링크를 허용합니다. .org/...../phpinfo, phpinfo 함수가 직접 실행되며 phpinfo.php 모듈 파일이 필요하지 않습니다.
  14. private static $allow_sys_fun = array();
  15. private static function __get_microtime(){
  16. list($usec, $sec) =explore(" ",microtime());
  17. return ((float)$usec (float)$sec);
  18. }
  19. //디버깅 설정 재작성: :__debug(true);
  20. 공용 정적 함수 __debug($d = true){
  21. static::$debug = $d;
  22. }
  23. //구성 경로 및 허용 함수
  24. public 정적 함수 __config($website_path = '',$physical_path = '',$allow_sys_fun = array( )){
  25. self::$physical_path = $physical_path;
  26. self::$website_path = $website_path;
  27. self::$allow_sys_fun = $allow_sys_fun;
  28. }
  29. //디버그 함수
  30. 공개 정적 함수 __msg($str){
  31. if(static::$debug){
  32. echo " n
    n".print_r($str,true)."n
    n";
  33. }
  34. }
  35. //시작 시간 구문 분석
  36. 공개 정적 함수 __start(){
  37. self::$time_start = self::__get_microtime();
  38. }
  39. //파싱 종료 시간
  40. 공개 정적 함수 __end($re = false){
  41. self::$time_end = self::__get_microtime();
  42. self::$time_pass = round((self ::$time_end - self::$time_start),6) * 1000;
  43. if($re){
  44. return self::$time_pass;
  45. }else{
  46. self::__msg( 'PASS_TIME: '.self::$time_pass.' ms');
  47. }
  48. }
  49. // test1.php 모듈 페이지('/test2/show')에서 Rwrite::__parseurl 실행과 같은 내부 교차 모듈 URL 구문 분석 호출 이 문장은 test2.php 모듈 페이지에서 show 메소드(클래스의 메소드)를 호출합니다. Rw_test2)
  50. 공용 정적 함수 __parseurl($url = '',$fun = '',$ data = NULL){
  51. if(!empty($url)&&!empty($fun)){
  52. $p = static::$physical_path;
  53. if(file_exists($p.$url) || file_exists($p.$url.'.php') ){
  54. $part = strtolower(basename( $p.$url , '.php' ));
  55. static::$linktag = $ part.'/'.$fun;
  56. $fname = static::$pretag.$part;
  57. if(class_exists($fname, false)){
  58. if(method_exists($fname,$fun )){
  59. return $fname::$fun($data);
  60. }
  61. }else {
  62. include( $p.$url );
  63. if( class_exists($fname, false) && method_exists($fname,$fun)){
  64. return $fname::$fun($data) ;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. //코어 링크 구문 분석 함수 Rwrite::__parse()는 최상위 재작성 코어 방향 대상 인덱스에서 실행됩니다. .php, 이는 Rwrite 사용자 정의 재작성이 활성화되었음을 의미합니다.
  71. public static function __parse($Url = '') {
  72. self::__start();
  73. $p = static::$physical_path;
  74. $w = static::$website_path;
  75. $req_execute = false;
  76. $url_p = 비어 있음($Url) ? $_SERVER['REQUEST_URI'] : $Url;
  77. $local = 구문 분석($ w);
  78. $req =parse_url($url_p);
  79. $req_path = preg_replace('| [^w/.]|','',$req['path']);
  80. $ req_para = 비어 있음($Url) ? strstr($_SERVER['SERVER_NAME'],'.',true) : 'www';
  81. if(empty($Url) && substr_count($_SERVER['SERVER_NAME'], '.') == 2 && $req_para != 'www'){
  82. self::__goto( $req_para,preg_replace('|^'.$local['path'].'|',"", $req_path));
  83. 반환 ;
  84. }else{
  85. $req_path_arr = 비어 있음($ req_path)?array():preg_split("|[/] |",preg_replace('|^'.$ local['path'].'|',"",$req_path));
  86. $req_fun = array_pop($req_path_arr);
  87. if(substr($req_fun,0,2)=='__' ){
  88. $req_fun = substr($req_fun,2);
  89. }
  90. $req_path_rearr = array_filter($req_path_arr);
  91. self::__msg($req_path_rearr);
  92. $req_temp = implode('/',$req_path_rearr);
  93. $fname = $req_temp.'/'.$req_fun ;
  94. if(!empty($req_fun)&&in_array($req_fun,static::$allow_sys_fun)){
  95. $req_fun();
  96. }else{
  97. if(!empty($req_fun) &&file_exists($p.$fname.'.php') ){
  98. include( $p.$fname .'.php' );
  99. }else{
  100. $fname = 비어 있음($req_temp) ? 'index' : $req_temp;
  101. if(file_exists($p.$fname.'.php') ){
  102. include( $p.$fname.'.php' );
  103. }else{
  104. $fname = $req_temp.'/index';
  105. if(file_exists($p.$ fname.'.php')){
  106. 포함( $p.$fname.'.php' ) ;
  107. }else{
  108. //이것은 "프로필/"로 연결되는 "개인 홈페이지"에 대한 특별 링크입니다. 직접 수정할 수 있습니다.
  109. //예: www.xxx.com/12/는 www.xxx를 의미합니다. .com/profile/?uid=12 또는 www.xxx.com/profile?uid=12
  110. $uid = is_numeric($req_temp) ? $req_temp : strstr($req_temp, '/', true);
  111. $ufun = is_numeric($req_temp) ? '인덱스' : strstr($req_temp, '/');
  112. if(is_numeric($uid)){
  113. self::$uid = $uid;
  114. if(!isset($_GET['uid'])) $_GET['uid'] = $uid;
  115. $fname = 'profile/'.$ufun;
  116. if(file_exists($p . $fname.'.php')){
  117. include( $p.$fname.'.php' );
  118. }else{
  119. header("location:".$w);
  120. 종료();
  121. }
  122. }else if(file_exists($p.'index.php')){
  123. $fname = 'index';
  124. include( $p.'index.php ' );
  125. }else{
  126. header("location:".$w);
  127. exit();
  128. }
  129. }
  130. }
  131. }
  132. $ ev_fname = strrpos($fname,'/')===false ? $fname : substr($fname,strrpos($fname,'/') 1);
  133. $ev_fname = static::$pretag.$ ev_fname ;
  134. if( class_exists($ev_fname, false) && method_exists($ev_fname,$req_fun)){
  135. static::$linktag = $req_fun=='index' ? $fname .'/'.$req_fun;
  136. if($req_fun != 'init' && method_exists($ev_fname,'init')){
  137. $ev_fname::init();
  138. }
  139. $ev_fname::$req_fun();
  140. }else if( class_exists($ev_fname, false) && method_exists($ev_fname,'index') ){
  141. static::$linktag = $fname.'/ ' ;
  142. if(method_exists($ev_fname,'init')){
  143. $ev_fname::init();
  144. }
  145. $ev_fname::index();
  146. }else if ( $fname != 'index' && class_exists(static::$pretag.'index', false) && method_exists(static::$pretag.'index','index') ){
  147. $ev_fname = static: : $pretag.'index';
  148. static::$linktag = 'index/';
  149. if(method_exists($ev_fname,'init')){
  150. $ev_fname::init();
  151. }
  152. $ev_fname::index();
  153. }else{
  154. self::__msg('함수가 존재하지 않습니다!');
  155. }
  156. }
  157. }
  158. self::__end();
  159. }
  160. //다음과 같은 사용자 정의 링크를 구문 분석합니다(데이터베이스에 저장된 구문 분석 값 사용). 데이터베이스에서 태그를 지정하세요. 개인의 블로그를 가리키면 www.baidu.com/blog?uid=12 또는 www.baidu.com/blog?uname=xiaoming이 표시됩니다(데이터베이스 설계 방법에 따라 다름).
  161. 공개 정적 함수 __goto($ para = '',$path = ''){
  162. $w = static::$website_path;
  163. if(empty($para)){
  164. exit('알 수 없는 링크, 구문 분석 실패, 액세스할 수 없음 ');
  165. }
  166. if(class_exists('Parseurl')){
  167. $prs = Parseurl::selectone(array('tag','=',$para) );
  168. self ::__msg($prs);
  169. if(!empty($prs)){
  170. $parastr = $prs['tag'];
  171. $output = array() ;
  172. $_GET [$prs['idtag']] = $prs['id'];
  173. parse_str($prs['parastr'], $output);
  174. $_GET = array_merge($ _GET,$output);
  175. $path = $prs['type'].'/'.preg_replace('|^/'.$prs['type'].'|','',$path) ;
  176. self: :__msg($path);
  177. header('location:'.$w.$path.'?'.http_build_query($_GET));
  178. exit();
  179. }else{
  180. header("location:".$w);
  181. exit();
  182. }
  183. }else{
  184. header("location:".$w);
  185. exit();
  186. }
  187. }
  188. }
  189. ?>
코드 복사

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!