本文整理汇总了PHP中PHPTAL::create方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPTAL::create方法的具体用法?PHP PHPTAL::create怎么用?PHP PHPTAL::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPTAL
的用法示例。
在下文中一共展示了PHPTAL::create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
/**
* Render a template
*
* $data cannot contain template as a key
*
* throws RuntimeException if $templatePath . $template does not exist
*
* @param \ResponseInterface $response
* @param $template
* @param array $data
*
* @return ResponseInterface
*
* @throws \InvalidArgumentException
* @throws \RuntimeException
*/
public function render(ResponseInterface $response, $template, array $data = [])
{
if (isset($data['template'])) {
throw new \InvalidArgumentException("Duplicate template key found");
}
if (!is_file($this->templatePath . $template)) {
throw new \RuntimeException("View cannot render `{$template}` because the template does not exist");
}
$template = \PHPTAL::create($this->templatePath . $template);
foreach ($data as $key => $value) {
$template->{$key} = $value;
}
$response->getBody()->write($template->execute());
return $response;
}
示例2: testCreateWithFileMethod
function testCreateWithFileMethod()
{
$obj = PHPTAL::create('input/phptal.01.html');
$this->assertInstanceOf('PHPTAL', $obj);
$obj->getCodePath();
}