PHP 查询职位和缓存查询的解决办法
内容摘要
这篇文章主要为大家详细介绍了PHP 查询职位和缓存查询的简单示例,具有一定的参考价值,可以用来参考一下。
对PHP的查询职位和缓存查询对此感兴趣的朋友,看看idc笔记做的技术笔
对PHP的查询职位和缓存查询对此感兴趣的朋友,看看idc笔记做的技术笔
文章正文
这篇文章主要为大家详细介绍了PHP 查询职位和缓存查询的简单示例,具有一定的参考价值,可以用来参考一下。
对PHP的查询职位和缓存查询对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* 查询职位和缓存查询
*
* @param
* @author 五一二笔记网: www.512PiC.com
**/
$bandeau_post = get_transient('top1_bandeau_post');
if (!is_array($bandeau_post) || count($bandeau_post)==0) {
$args = array(
'posts_per_page' => 5
);
$bandeau_post = array();
$bandeau_post = query_posts($args);
set_transient('top1_bandeau_post',$bandeau_post,60*60*$timeout);
}
foreach($bandeau_post as $post) :
setup_postdata($post);
// the display code
endforeach;
/*** 来自php教程(www.idcnote.com) ***/
注:关于PHP 查询职位和缓存查询的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释