本文整理汇总了PHP中DedeSql::close方法的典型用法代码示例。如果您正苦于以下问题:PHP DedeSql::close方法的具体用法?PHP DedeSql::close怎么用?PHP DedeSql::close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DedeSql
的用法示例。
在下文中一共展示了DedeSql::close方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: DedeSql
<?php
require_once(dirname(__FILE__)."/config.php");
@set_time_limit(0);
CheckPurview('sys_ArcBatch');
if(empty($dopost)) $dopost = '';
$dsql = new DedeSql(false);
if($dopost=='analyse'){
$channelid = intval($channelid);
$maintable = $dsql->getone("select maintable from #@__channeltype where ID=$channelid");
if(is_array($maintable)){
$maintable = $maintable['maintable'];
}else{
$dsql->close();
showmsg('频道id不正确,请重新选择频道','javascript:;');
exit();
}
$dsql->SetQuery("Select count(title) as dd,title From $maintable where channel=$channelid group by title order by dd desc limit 0,$pagesize");
$dsql->Execute();
$allarc = 0;
require_once(dirname(__FILE__)."/templets/article_result_same.htm");
$dsql->Close();
exit();
}else if($dopost=='delsel'){
require_once(dirname(__FILE__)."/../include/inc_typelink.php");
require_once(dirname(__FILE__)."/inc/inc_batchup.php");
if(empty($titles)){
$dsql->close();
header("Content-Type: text/html; charset={$cfg_ver_lang}");