タグ

cakephpとfeedに関するaratafujiのブックマーク (1)

  • RSS取得の方法 | CakePHP入門

    SimplePieを使います。 SimplePieをダウンロードします。 ダウンロードしたファイルの中にあるsimplepie.incをsimplepie.phpにリネームして、/app/vendors/simplepie/配下に設置します。 続いて、コンポーネントをダウンロードし、解凍したファイルを/app/controllers/components/配下に設置。 キャッシュ用のフォルダ/app/tmp/cache/rss/を用意して準備完了。 コントローラーに下記の内容を記載します。 var $components = array('Simplepie'); function sample(){ $items = $this->Simplepie->feed("http://as.blog16.jp/index.php?tempskin=_rss2"); $this->set(

  • 1