本文整理汇总了PHP中view::get方法的典型用法代码示例。如果您正苦于以下问题:PHP view::get方法的具体用法?PHP view::get怎么用?PHP view::get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类view
的用法示例。
在下文中一共展示了view::get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get
/**
* 取得模板显示变量的值
* @access protected
* @param string $name 模板显示变量
* @return mixed
*/
public function get($name = '')
{
if ($this->view == null) {
$this->view = new \Think\View();
}
return $this->view->get($name);
}
示例2: get
/**
* 取得模板显示变量的值
*
* @access protected
* @param string $name
* 模板显示变量
* @return mixed
*/
public function get($name = '')
{
return $this->view->get($name);
}
示例3: output
/**
* 处理显示模板内容,处理不需要是数据源(或者自己带有数据源)模板的现实
*/
public static function output()
{
$agrs = func_get_args();
//有缓存就直接读缓存
if ($htmlStr = self::getCacheHandler()->getCache('Tag' . md5(Tag::getInt(0, 0, $agrs)))) {
return $htmlStr;
}
extract(view::get());
//将模板对象吊出来
$content = stripslashes(sf::getModel("templates", Tag::getInt(0, 0, $agrs))->getContent());
//取得模板内容
ob_start();
eval("?>{$content}<?php ");
$htmlStr = ob_get_contents();
ob_end_clean();
//将内容写到缓存中
self::getCacheHandler()->setCache('Tag' . md5(Tag::getInt(0, 0, $agrs)), $htmlStr);
return $htmlStr;
}