本文整理匯總了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;
}