lianzh/php-viewlayer

将 PHP viewlayer 脚本渲染成 PSR-7 响应对象。

dev-master 2017-11-14 11:51 UTC

This package is not auto-updated.

Last update: 2024-09-20 02:22:19 UTC


README

将 PHP 视图脚本渲染成 PSR-7 响应对象。

<?php

require __DIR__ . '/vendor/autoload.php';

$settings = [
	'template_path'	=> __DIR__ . '/templates'
];


$renderer = new \LianzhView\Renderer($settings['template_path']);