首页 > CMS > 织梦DEDE > 正文

织梦用sql主表关联栏目查询 生成静态url语句的办法

2024-07-12 08:29:07
字体:
来源:转载
供稿:网友
下面的sql即可实现:

	$dsql->SetQuery("SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath FROM `dede_archives` arc LEFT JOIN `dede_arctype` tp on arc.typeid=tp.id WHERE         FROM_UNIXTIME(arc.senddate,'%Y-%m-%d') = "."'".date('Y-m-d')."'");	$dsql->Execute();	while ($rows = $dsql->GetArray()) {		$rows['url'] = GetFileUrl($rows['id'],$rows['typeid'],$rows['senddate'],$rows['title'],$rows['ismake'],$rows['arcrank'],$rows['namerule'],$rows['typedir'],$rows['money'],$rows['filename'],$rows['moresite'],$rows['siteurl'],$rows['sitepath']);		$arcArray[] = $rows;	}

   
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表