コード例 #1
0
ファイル: http_dispatcher.php プロジェクト: rsesek/phalanx
 public function Start()
 {
     $this->request_method = strtoupper($_SERVER['REQUEST_METHOD']);
     $url = '';
     if (isset($_GET['__dispatch__'])) {
         $url = $_GET['__dispatch__'];
     }
     $this->url_input = $this->_TokenizeURL($url);
     parent::Start();
 }
コード例 #2
0
ファイル: cli_dispatcher.php プロジェクト: rsesek/phalanx
 public function Start()
 {
     $this->cli_input = $this->_ParseArguments($this->argv);
     parent::Start();
 }