本文整理汇总了PHP中H2o::loadTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP H2o::loadTemplate方法的具体用法?PHP H2o::loadTemplate怎么用?PHP H2o::loadTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类H2o
的用法示例。
在下文中一共展示了H2o::loadTemplate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: should_render_inherited_template
public function should_render_inherited_template()
{
$h2o = new H2o('inherited.html', $this->option);
expects($h2o->render())->should_be('header,extended body,footer');
# extend nested blocks
$h2o->loadTemplate('nested_inherit');
expects($h2o->render())->should_be('h2o template rocks so hard ! and plays so hard');
}
示例2: should_be_able_to_load_template_lazily
public function should_be_able_to_load_template_lazily()
{
$h2o = new H2o('a.html', array('searchpath' => 'templates'));
expects($h2o->render())->should_not_be_empty();
$h2o = new H2o(null, array('searchpath' => 'templates'));
$h2o->loadTemplate('b.html');
expects($h2o->render())->should_not_be_empty();
}
示例3: chdir
function should_be_able_to_load_template_lazily()
{
chdir(dirname(__FILE__));
$paths = array(dirname(__FILE__) . DS . 'templates' . DS);
$h2o = h2o('a.html', array('searchpath' => $paths));
expects($h2o->render())->should_not_be_empty();
$h2o = new H2o('a.html', array('searchpath' => 'templates'));
expects($h2o->render())->should_not_be_empty();
$h2o = new H2o(null, array('searchpath' => 'templates'));
$h2o->loadTemplate('b.html');
expects($h2o->render())->should_not_be_empty();
}