PHP實現博客Ping功能源碼分享

什麼是Ping

Ping 是一種服務php

經過Ping,你能夠通知搜索引擎來快速收錄你的博客git

Ping使用的是XML-RPC格式github

如何Ping

Ping有兩種方式,手動的和自動的web

使用PHP自動Ping

原理很簡單。經過第三方提供的類IXR_Library.php 造成XML-RPC格式的數據發送到各大網站的Ping地址便可post

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);

參數:ui

  • title是博客的標題搜索引擎

  • urlIndex是博客首頁地址google

  • url_key是博客的具體地址url

  • rss是訂閱源feed地址 能夠不填

  • http://blogsearch.google.com/... 是Google Ping的地址其中之一,還有不少這裏沒有都列出

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

手動Ping

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

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

因爲這些地址有不少都過時了,這裏就不一一列出了

相關文章
相關標籤/搜索