flaviovs/uview

PHP 的微视图模板系统

1.0.0 2016-02-18 21:00 UTC

This package is not auto-updated.

Last update: 2024-09-20 18:03:14 UTC


README

使用方法

$registry = new UView\Registry('/path/of/view/files');
# (...)
try {
    # Will try to load '/path/of/view/files/page.php'
    $view = $registry->get('page');
} catch (RuntimeException $ex) {
    die('Could not find view file');
}
$view->set('user_name', 'John Smith');
$view->set('user_login', 'john.smith');

echo $view;