GetArticleList() 的使用语法:

$array=$zbp->GetArticleList($select,$where,$order,$limit,$option,$readtags);

例子:

<?php
$p = new Pagebar("{%host%}zb_users/plugin/seotool1/main.php?type=article{&page=%page%}",false);
$p->PageCount =20;
$p->PageNow = (int)GetVars('page','GET')==0?1:(int)GetVars('page','GET');
$p->PageBarCount = $zbp->pagebarcount;

$select="*";
$where=array();
if(isset($_POST['q'])){/*如果有关键词,则加入关键词条件*/
array_push($where,array('like','log_Title','%'.$_POST['q'].'%'));
}
if(isset($_POST['searchcid']) and $_POST['searchcid']!=-1){/*如果指定分类.则加入分类条件*/
array_push($where,array('=','log_CateID',$_POST['searchcid']));
}
//$where=array('=', 'log_CateID', GetVars('category'));/*指定分类,默认null*/
$order=array('log_PostTime' => 'DESC');/*排序方式,默认null*/
$limit=array(($p->PageNow - 1) * $p->PageCount, $p->PageCount);/*limit,默认null*/
$option=array('pagebar' => $p);/*附加选项,默认null*/
$readtags=false;/*是否读取标签,默认为真*/
$array=$zbp->GetArticleList($select,$where,$order,$limit,$option,$readtags);
?>


相关推荐

zbLoG $tempLate-&Gt;GettaGs() 函数

$this->templateTags['zbp'] = &$zbp; $this->templateTags['user'] = &am

$zbp对象函数:zbLoG更新缓存[清空缓存并重新编译模板]函数

更新缓存分下面三部,.如果前面两部已经执行过了 则可直接使用misc_statistic()来更新各种数据和缓存.require '../../../../zb_system/function

$zbp函数大全 zbLoG主题开发与插件开发常用函数

<?php $zbp->SaveCache();/*更新缓存*/ $zbp->BuildModule();//更新模块 $cate->Level //分类层级 zb

zbp-&Gt;GetListtype()用法

global $zbp; $sql = $zbp->db->sql->get() ->select('zbp_post') ->wher

XMLHttprequest:原生的ajax 发送Get请求 和 post请求

get请求function zhankai(id){/*函数:展开某个分类*/ var httpRequest = new XMLHttpRequest () ; httpRequest.op

c++ MFc Get请求和Post请求 (WinHttprequest)

WinHttpRequest 的 dll位置: C:\\Windows\\System32\\winhttp.dll所以使用之前需要写上#import "C:\\\\Windows\\\\System32

原生Javascript获取指定的Get请求参

代码如下:function 取get参数值(key){ var url = location.search; str = url.match(/\\?(\\S*)/)[1]; //文本_取右边 ?

php $_Get中的引号自动被转义如何取消

php.ini配置文件:magic_quotes_gpc = On改为:magic_quotes_gpc = OFF注意对参数进行过滤。防止sql注入。

打开editpLus函数列表窗口 文本库目录 每了怎么调出

editplus窗口不知道是不是bug

php mysqLi_query() 函数用法

mysqli_query(mysql连接,sql语句) 的使用:参数一:MySQL 连接参数二:sql语句参数三:可选。一个常量。可以是下列值中的任意一个:MYSQLI_USE_RESULT(如果需