这篇文章主要为大家详细介绍了PHP 查询职位和缓存查询的简单示例,具有一定的参考价值,可以用来参考一下。
对PHP的查询职位和缓存查询感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 查询职位和缓存查询
*
* @param
* @author 五一二笔记网: www.q1010.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;
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/677-0.html
注:关于PHP 查询职位和缓存查询的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:查询职位,缓存查询
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。