コード例 #1
0
ファイル: App.php プロジェクト: chenwenzhang/initially-rpc
 /**
  * Web app handle
  */
 public function handle()
 {
     $action = isset($_GET["action"]) ? trim($_GET["action"]) : "list";
     $control = new Control();
     switch ($action) {
         case "detail":
             $control->detailAction();
             break;
         default:
             $control->listAction();
     }
 }