Skip to content

Instantly share code, notes, and snippets.

View zenril's full-sized avatar
🎯
Focusing

Faxwang zenril

🎯
Focusing
View GitHub Profile
class Router {
public $routes;
function Router( $map ) {
$this->routes = $map;
add_filter( 'parse_request' , array( &$this , 'request_parser' ) );
}
function request_parser($params) {