使用cURL连接到pingomatic的PHP函数

使用cURL连接到pingomatic的PHP函数,php,proxy,curl,Php,Proxy,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

我正在创建一个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的请求(请参阅 问题)

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

例如:


你的问题是什么?如果示例代码不能按您希望的方式工作,那么如何处理?您是否也可以显示使用
$data
和其他变量的内容调用此函数的代码。它在
$XML
meybe中,而不是
strlen($XML))
put
strlen($data))
。也许你应该从标题中删除
内容长度
$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');