⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arc.caicai.class.php

📁 这是matlab的一个小程序
💻 PHP
字号:
<?php
if(!defined('DEDEINC'))
{
	exit("Request Error!");
}
require_once(DEDEINC."/datalistcp.class.php");
require_once(DEDEINC."/channelunit.func.php");

class Caicai extends DataListCP
{
	var $maxPageSize;

	/**
	 * 对config参数及get参数等进行预处理
	 *
	 */
	function PreLoad()
	{
		global $totalresult,$pageno;
		if(empty($pageno) || ereg("[^0-9]",$pageno))
		{
			$pageno = 1;
		}
		if(empty($totalresult) || ereg("[^0-9]",$totalresult))
		{
			$totalresult = 0;
		}
		$this->pageNO = $pageno;
		$this->totalResult = $totalresult;

		if(isset($this->tpl->tpCfgs['pagesize'])){
			$this->pageSize = $this->tpl->tpCfgs['pagesize'];
		}
		$this->totalPage = ceil($this->totalResult/$this->pageSize);
		if($this->totalPage > $this->maxPageSize)
		{
			$this->totalPage = $this->maxPageSize;
		}
		$this->sourceSql = ereg_replace("limit [0-9,]{1,}",'',$this->sourceSql);
		if($this->totalResult==0)
		{
			//$this->isQuery = true;
			//$this->dsql->Execute('dlist',$this->sourceSql);
			//$this->totalResult = $this->dsql->GetTotalRow('dlist');
			$countQuery = eregi_replace("select[ \r\n\t](.*)[ \r\n\t]from","Select count(*) as dd From",$this->sourceSql);
			$row = $this->dsql->GetOne($countQuery);
			$this->totalResult = $row['dd'];
			$this->sourceSql .= " limit 0,".$this->pageSize;
		}
		else
		{
			$this->sourceSql .= " limit ".(($this->pageNO-1) * $this->pageSize).",".$this->pageSize;
		}
	}

	/**
	 * 获取当前页数据列表
	 *
	 * @param unknown_type $atts
	 * @param unknown_type $refObj
	 * @param unknown_type $fields
	 * @return unknown
	 */
	function GetArcList($atts,$refObj='',$fields=array())
	{
		$rsArray = array();
		$t1 = Exectime();
		if(!$this->isQuery)
		{
			$this->dsql->Execute('dlist',$this->sourceSql);
		}
		$i = 0;
		while($arr=$this->dsql->GetArray('dlist'))
		{
			$i++;
			$arr['filename'] = $arr['arcurl'] = GetFileUrl($arr['id'],$arr['typeid'],$arr['senddate'],$arr['title'],$arr['ismake'],
			$arr['arcrank'],$arr['namerule'],$arr['typedir'],$arr['money'],$arr['filename'],$arr['moresite'],$arr['siteurl'],$arr['sitepath']);
			$arr['typeurl'] = GetTypeUrl($arr['typeid'],MfTypedir($arr['typedir']),$arr['isdefault'],$arr['defaultname'],
			$arr['ispart'],$arr['namerule2'],$arr['moresite'],$arr['siteurl'],$arr['sitepath']);
			if($arr['litpic']=='')
			{
				$arr['litpic'] = '/images/defaultpic.gif';
			}
			if(!eregi("^http://",$arr['litpic']))
			{
				$arr['picname'] = $arr['litpic'] = $GLOBALS['cfg_multi_site'] == 'Y' ? $GLOBALS['cfg_mainsite'].$arr['litpic'] : $arr['litpic'];
			}
			else
			{
				$arr['picname'] = $arr['litpic'] = $arr['litpic'];
			}
			$arr['alttitle'] = $arr['userid']." 的空间";
			$arr['face'] = ($arr['face']!='' ? $arr['face'] : 'images/nopic.gif');
			if($arr['userid']!='')
			{
				$arr['spaceurl'] = $GLOBALS['cfg_basehost'].'/member/index.php?uid='.$arr['userid'];
			}
			else
			{
				$arr['alttitle'] = $arr['title'];
				$arr['spaceurl'] = $arr['arcurl'];
				$arr['face'] = $arr['litpic'];
				$arr['face'] = str_replace('defaultpic','dfcaicai',$arr['face']);
			}
			if(!empty($arr['lastpost']))
			{
				$arr['lastpost'] = MyDate('m-d h:i',$arr['lastpost']);
			}
			else
			{
				$arr['lastpost'] = "<a href='../plus/feedback.php?aid={$arr['id']}'>说几句&gt;&gt;</a>";
			}
			$rsArray[$i]  =  $arr;
			if($i >= $this->pageSize)
			{
				break;
			}
		}
		$this->dsql->FreeResult('dlist');
		$this->queryTime = (Exectime() - $t1);
		return $rsArray;
	}

	/**
	 * 获得最差或最好的踩踩文章
	 *
	 * @param unknown_type $atts
	 * @param unknown_type $refObj
	 * @param unknown_type $fields
	 * @return unknown
	 */
	function GetSortArc($atts,$refObj='',$fields=array())
	{
		$arcrow = (empty($atts['row']) ?  12 : $atts['row']);
		$order = (empty($atts['order']) ? 'scores' : $atts['order'] );
		$orderway = (empty($atts['orderway']) ? 'desc' : $atts['orderway'] );
		if(empty($arcrow))
		{
			$arcrow = 12;
		}

		$query = "Select arc.*,tp.typedir,tp.typename,
		      tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath
          From `#@__archives` arc left join `#@__arctype` tp on tp.id=arc.typeid
          where arc.arcrank>-1 order by arc.{$order} $orderway limit 0,$arcrow ";

		$rsArray = array();
		$this->dsql->Execute('cai',$query);
		$i = 0;
		while($arr=$this->dsql->GetArray('cai'))
		{
			$i++;
			$arr['filename'] = $arr['arcurl'] = GetFileUrl($arr['id'],$arr['typeid'],$arr['senddate'],$arr['title'],$arr['ismake'],
			$arr['arcrank'],$arr['namerule'],$arr['typedir'],$arr['money'],$arr['filename'],$arr['moresite'],$arr['siteurl'],$arr['sitepath']);

			$arr['typeurl'] = GetTypeUrl($arr['typeid'],MfTypedir($arr['typedir']),$arr['isdefault'],$arr['defaultname'],
			$arr['ispart'],$arr['namerule2'],$arr['moresite'],$arr['siteurl'],$arr['sitepath']);

			if($arr['litpic']=='')
			{
				$arr['litpic'] = '/images/defaultpic.gif';
			}

			if(!eregi("^http://",$arr['litpic']))
			{
				$arr['picname'] = $arr['litpic'] = $GLOBALS['cfg_cmsurl'].$arr['litpic'];
			}
			else
			{
				$arr['picname'] = $arr['litpic'] = $arr['litpic'];
			}

			$rsArray[$i]  =  $arr;
		}
		$this->dsql->FreeResult('cai');
		return $rsArray;

	}

	/**
	 * 获取顶级栏目列表
	 *
	 * @param unknown_type $atts
	 * @param unknown_type $refObj
	 * @param unknown_type $fields
	 * @return unknown
	 */
	function GetCatalog($atts,$refObj='',$fields=array())
	{
		$maxrow = (empty($atts['row']) ?  12 : $atts['row']);
		$query = "Select id,typename From `#@__arctype` where reid=0 and ispart<2 And channeltype>0 order by sortrank asc limit 0,$maxrow ";
		$rsArray = array();
		$this->dsql->Execute('co',$query);
		$i = 0;
		while($arr=$this->dsql->GetArray('co'))
		{
			$i++;
			$rsArray[$i]  =  $arr;
		}
		$this->dsql->FreeResult('co');
		return $rsArray;
	}

}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -