繁体   English   中英

PHP函数使用cURL连接到pingomatic

[英]PHP function to connect to pingomatic using cURL

我正在创建一个PHP函数以使用CURL连接到pingomatic,但响应始终是这样。

Array ( [EXE] => XML-RPC server accepts POST requests only. )

这是我的示例代码...

function curl_getpage2($url,$data, $referer = null, $agent = null, $header = null, $timeout = 20, $proxy = null, $proxy_username = null, $proxy_password = null) {
 //getProxy();
 if ($agent == null) {
     $agent = getAgent();
 }

 if ($referer == null) {
     $referer = getHost($url);
 }
 if (!is_array($header)) { 
  $header = array("Content-Type:text/xml","Host:".getHost($url),"User-Agent:$agent",
   "Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
   "Accept-Language:en-us,en;q=0.5",
   "Accept-Encoding:gzip,deflate",
   "Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.7",
   "Keep-Alive:300",
   "Connection:keep-alive",
   "Cache-Control:max-age=0",
   "Content-length: ".strlen($XML));
 }

 if($proxy == null){
     $proxy = "208.100.27.155:60099";
 }

 if($proxy_username == null && $proxy_password == null){
     $proxyUnPW = "unproxy:pwproxy";
 }else{
     $proxyUnPW = $proxy_username.":".$proxy_password;
 }

 $ch = curl_init();
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_HEADER, 0);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
 curl_setopt($ch, CURLOPT_HTTPHEADER,$header);
 curl_setopt($ch, CURLOPT_PROXY, $proxy);
 curl_setopt($ch, CURLOPT_PROXYUSERPWD,$proxyUnPW);
        curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);

        //curl_setopt($ch, CURLOPT_USERAGENT, $agent);
 //curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        //curl_setopt($ch, CURLOPT_REFERER, $referer);
 //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
 //curl_setopt($ch, CURLOPT_AUTOREFERER,TRUE);
 //curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
 //curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
 //curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
 //curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);       
 //curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);

        $result['EXE'] = curl_exec($ch);
        //$result['INF'] = curl_getinfo($ch);
        //$result['ERR'] = curl_error($ch);

        curl_close($ch);

        return $result;
}

我需要一些帮助。 我刚接触PHP。

您可以通过Web表单提交一次站点,然后调用该URL的GET请求(请参阅问题如何在php中自动ping到pingomatic? )。

因此,如果您要ping所有服务(使用urlencode()编码的标题和url urlencode()则您的URL将类似于以下内容:

$url = 'http://pingomatic.com/ping/?title='.$title.'&blogurl='.$url.'&rssurl=&chk_weblogscom=on&chk_blogs=on&chk_feedburner=on&chk_newsgator=on&chk_myyahoo=on&chk_pubsubcom=on&chk_blogdigger=on&chk_weblogalot=on&chk_newsisfree=on&chk_topicexchange=on&chk_google=on&chk_tailrank=on&chk_skygrid=on&chk_collecta=on&chk_superfeedr=on');

例如:

http://pingomatic.com/ping/?title=Example%20Title&blogurl=http%3A%2F%2Fwww.example.com%2F&rssurl=&chk_weblogscom=on&chk_blogs=on&chk_feedburner=on&chk_newsgator=on&chk_myyahoo=on&chk_pubsubcom=on&chk_blogdigger=on&chk_weblogalot=on&chk_newsisfree=on&chk_topicexchange = on&chk_google = on&chk_tailrank = on&chk_skygrid = on&chk_collecta = on&chk_superfeedr = on

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM