去评论
就爱江湖 Www.92Jh.Cn

织梦熊掌号api自动提交 上传根目录即可

重现江湖
2019/11/05 02:12:23
在你网站的根目录新建个文件名1.php,可以放在网站根目录也可以放其他目录,到时候每天点一下就行了!只适用于自适应站点

<?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,$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.="https://www.19tx.cn".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=realtime'; // 前边的熊掌号ID和密钥换成自己的

$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;          ?>