コード例 #1
0
ファイル: AtomFormat.php プロジェクト: Shnoulle/rss-bridge
 public function display()
 {
     $this->setContentType('application/atom+xml; charset=UTF-8')->callContentType();
     return parent::display();
 }
コード例 #2
0
ファイル: JsonFormat.php プロジェクト: Nomane/rss-bridge
 public function display()
 {
     $this->setContentType('application/json')->callContentType();
     return parent::display();
 }
コード例 #3
0
ファイル: HtmlFormat.php プロジェクト: Nomane/rss-bridge
 public function display()
 {
     $this->setContentType('text/html; charset=' . $this->getCharset())->callContentType();
     return parent::display();
 }