This article mainly introduces how to use php code to implement pseudo-static pages. it involves some usage skills related to predefined variables and regular expression matching on the php server and has some reference value, for more information about how to use php code to implement pseudo-static pages, see the examples in this article. Share it with you for your reference. The details are as follows:
If (1 = URLROLE) {$ nav = $ _ SERVER ["REQUEST_URI"]; $ script_name = $ _ SERVER ["SCRIPT_NAME"]; $ nav1 = ereg_replace (". html "," ", substr (ereg_replace (" $ script_name "," ", urldecode ($ nav), 1); $ vars = @ explode ("/", $ nav1); $ _ url = array_chunk ($ vars, 2); $ _ GET ['M'] = $ vars [0]? $ Vars [0]: 'index'; // If no parameter exists, the index method of the index class library is accessed by default. $ _ GET ['A'] = $ vars [1]? $ Vars [1]: 'index'; unset ($ _ url [0]); if ($ _ url) {foreach ($ _ url as $ key => $ val) {@ $ _ GET [$ val [0] = $ val [1] ;}}// var_dump ($ _ GET );}
I hope this article will help you with php programming.