本文整理汇总了PHP中zmf::setCache方法的典型用法代码示例。如果您正苦于以下问题:PHP zmf::setCache方法的具体用法?PHP zmf::setCache怎么用?PHP zmf::setCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zmf
的用法示例。
在下文中一共展示了zmf::setCache方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tongJi
/**
* 根据某一栏目获取同级栏目
* @param type $info
* @return type
*/
public function tongJi($info)
{
if (empty($info)) {
return false;
}
$cacheKey = "getTongJiColum_{$info['id']}";
$items = zmf::getCache($cacheKey);
if ($items) {
return $items;
}
if ($info['theorder'] == 1) {
$theorder = 1;
} else {
$theorder = $info['theorder'];
}
$sql = "SELECT id,title FROM {{area}} WHERE theorder={$theorder} AND status=" . Posts::STATUS_PASSED . " AND belongid={$info['belongid']}";
$items = Yii::app()->db->createCommand($sql)->queryAll();
zmf::setCache($cacheKey, $items, 86400);
return $items;
}