1

什么是Ping

Ping 是一种服务

通过Ping,你可以通知搜索引擎来快速收录你的博客

Ping使用的是XML-RPC格式

如何Ping

Ping有两种方式,手动的和自动的

使用PHP自动Ping

原理很简单。通过第三方提供的类IXR_Library.php 形成XML-RPC格式的数据发送到各大网站的Ping地址即可

demo.php

require ("IXR_Library.php");

function xmlRpcPing($url, $title, $urlIndex, $url_key, $rss)
{

    $client = new IXR_Client($url);
    $client->timeout = 3;
    $client->useragent .= ' -- Shop123 Ping/2.0.0';
    $client->debug = false;

    if ($client->query('weblogUpdates.extendedPing', $title, $urlIndex, $url_key, $rss)) {
        return $client->getResponse();
    }

    if ($client->query('weblogUpdates.ping', $title, $urlIndex, $url_key)) {
        return $client->getResponse();
    }

    return false;
}

$title = "title";
$urlIndex = "http://yourblog.com/";
$url_key = "http://yourblog.com/postid";
$rss = "http://yourblog.com/feed";

xmlRpcPing('http://blogsearch.google.com/ping/RPC2', $title, $urlIndex, $url_key, $rss);

参数:

  • title是博客的标题

  • urlIndex是博客首页地址

  • url_key是博客的具体地址

  • rss是订阅源feed地址 可以不填

  • http://blogsearch.google.com/... 是Google Ping的地址其中之一,还有很多这里没有都列出

源码地址: https://github.com/maketea/ping

手动Ping

Google:http://blogsearch.google.com/...

百度:http://utility.baidu.com/blog...

由于这些地址有很多都过期了,这里就不一一列出了


煮茶
217 声望13 粉丝

PHP,Magento2,laravel