facebook twitter hatena line email

「Php/pubsubhubbub」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==PubSubHubBubとは== 高速インデックスライブラリ ==ダウンロード== git clone https://github.com/joshfraser/pubsubhubbub-php ==サンプル== requi...」)
 
(サンプル)
行6: 行6:
  
 
==サンプル==
 
==サンプル==
  require_once __DIR__ . '/pubsubhubbub-php/library/publisher.php';
+
require_once __DIR__ . '/pubsubhubbub-php/library/publisher.php';
  $p = new Publisher('http://pubsubhubbub.appspot.com/');
+
$p = new Publisher('http://pubsubhubbub.appspot.com/');
  $url = "http://wiki.nonip.info/index.php/Php/pubsubhubbub";
+
$url = "http://wiki.nonip.info/index.php/Php/pubsubhubbub";
  if ($p->publish_update($url)) {
+
if ($p->publish_update($url)) {
 
     echo '成功';
 
     echo '成功';
  } else {
+
} else {
 
     echo '失敗';
 
     echo '失敗';
 
     print_r($p->last_response());
 
     print_r($p->last_response());
  }
+
}
  
 
==参考==
 
==参考==
 
https://syncer.jp/how-to-use-pubsubhubbub
 
https://syncer.jp/how-to-use-pubsubhubbub

2016年2月20日 (土) 01:43時点における版

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

参考

https://syncer.jp/how-to-use-pubsubhubbub