名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
前两天公布了织梦程序熊掌号新增数据API提交工具,很多人来问我历史数据怎么提交,今天就把相关具体代码如下也放出来,供大驾家交流学习。
本教程是采用php来提交,这样可以全自动的批量提交站点的url。
首先咱们看看熊掌号官方给出的示例相关具体代码如下:
$urls = array( 'http://www.example.com/1.html', 'http://www.example.com/2.html', ); $api = 'http://data.zz.baidu.com/urls?appid=1596002713017672&token=vsaJJ3BFNUGx9lGh&type=batch'; $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; |
冬镜结合织梦程序的变量修改后的相关具体代码如下如下:咱们只需要把其中的url地址改为变量,还有就是把API接口改成自己的就行。
<?php require_once ("include/common.inc.php"); require_once "include/arc.partview.class.php"; require_once('include/charset.func.php'); $year = date("Y"); $month = date("m"); $day = date("d"); $dayBegin = mktime(0,0,0,7,1,2015); $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.""; $urls=""; $dsql->Execute('arch.id,types.typedir',$query); while($row = $dsql->GetArray('arch.id,types.typedir')) { $urls.="http://www.mzdh.net.com".str_replace("{cmspath}","",$row['typedir'])."/".$row[id].".html".","; } $urls=substr($urls,0,-1); $urls = explode(",",$urls); $api = 'http://data.zz.baidu.com/urls?appid=熊掌号ID&token=密钥&type=batch'; $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; ?> |
1、建站时间以上相关具体代码如下大驾家需要修改三个地方:
2、url地址修改
$urls.="http://www.11px.cn".str_replace |
3、历史数据API接口将上面的http://www.11px.cn修改为你自己的主站点
$api = 'http://data.zz.baidu.com/urls?appid=熊掌号ID&token=密钥&type=batch'; |
按照上面的文字说明修改成自己的
好了今天的教程就到这里
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。去除织梦程序img中的style width height属性相关具体操作方法