今天给大家分享dedecms织梦怎么做熊掌号自动提交方法,织梦使用的是另外的一个二级目录,所以在提交熊掌号的时候有点复杂!
第一步:在\plus\task目录下新建一个php文件,命名为xzh.php代码如下:
require_once(dirname(__FILE__).'/../../include/common.inc.php'); require_once(DEDEINC."/arc.partview.class.php"); require_once(dirname(__FILE__).'/../../include/charset.func.php'); $year = date("Y"); $month = date("m"); $day = date("d"); $dayBegin = mktime(0,0,0,$month,$day,$year); $dayEnd = mktime(23,59,59,$month,$day,$year); $query = "SELECT arch.id,types.typedir FROM dede_arctype as types inner join dede_archives as arch on types.id=arch.typeid where pubdate<".$dayEnd." AND pubdate>".$dayBegin.""; //echo $query; $urls=""; $dsql->Execute('arch.id,types.typedir',$query); while($row = $dsql->GetArray('arch.id,types.typedir')) { $urls.="$urls.="https://www.xiuzhanwang.com".str_replace("{cmspath}","",$row['typedir'])."/".$row[id].".html".",";".","; } $urls=substr($urls,0,-1); $tjurl = $urls; $urls = explode(",",$urls); $api = 'http://data.zz.baidu.com/urls?appid=1567968668883362&token=TqR2soisGxVnnKiN&type=realtime'; // 熊掌号api接口调用地址 $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode("\n", $urls), CURLOPT_HTTPHEADER => array('Content-Type: text/plain'), ); curl_setopt_array($ch, $options); $result = curl_exec($ch); echo $result; $dsql->ExecuteNoneQuery("Update `xiuzhanwang_sys_task` set sta='成功' where dourl='xzh.php' "); $jieguo = date('Y-m-d H:i:s',time())."返回结果:".$result."\r\n".$tjurl; $numbytes = file_put_contents('xzh.txt', $jieguo); //返回结果 exit(); |
第二步:在网站后台系统-计划任务管理里面新增一个任务,运行程序填xzh.php,设定好执行规则。
第三步:在模板中用JS调用/plus/task.php?client=js任务执行成功之后会在\plus\task目录下生成一个xzh.txt文件,返回提交结果、任务执行时间、提交的url,如下图:
转载请注明来源网址:https://www.mubanyun.com/dedecms_m/1015.html
发表评论
评论列表(条)