mite-php-legacy/examples/53oop.php

13 lines
268 B
PHP
Raw Normal View History

2018-12-09 08:04:11 +00:00
<?php require('../vendor/autoload.php');
/*
* Example: 5.3 OOP Anonymous Functions
*/
$app = new Mite(array('debug' => TRUE, 'index' => '/mite/examples/53oop.php'));
$app->route('/', function() use($app) {
$app->view('views/index.tpl.php');
});
$app->run();