Php/pubsubhubbub
提供: 初心者エンジニアの簡易メモ
PubSubHubBubとは
検索エンジンへの記事高速インデックス登録ライブラリ
ダウンロード
git clone https://github.com/joshfraser/pubsubhubbub-php
サンプル
require_once __DIR__ . '/pubsubhubbub-php/library/publisher.php'; $p = new Publisher("http://pubsubhubbub.appspot.com/"); $url = "http://wiki.nonip.info/index.php/Php/pubsubhubbub"; if ($p->publish_update($url)) { echo '成功'; } else { echo '失敗'; print_r($p->last_response()); }