Example #1
0
 static function run()
 {
     try {
         $defaultRouter = DefaultRouter::getDefaultRouter();
         $defaultRouter->run(App::getApp());
     } catch (\Exception $e) {
         echo $e->getMessage();
     }
 }
Example #2
0
<?php

use NanoPHP\App;
$app = App::getApp();
$app->controller('pages', function () {
    $this->action('index', function () {
        var_dump($_GET);
        echo 'hello action';
        $this->set('happy', 'Having a happy life.');
        // $this->render('Pages/index');
        $this->render();
    });
    $this->action('test', function () {
        $this->render();
    });
    echo 'hello controller . <br/>';
});