简单一段代码让 typecho 支持 JSON 输出

将下面代码添加到 typecho 头部模版的开头即可实现简单的 JSON 输出,实现 API 效果。 API 的使用大家就自己发挥吧。

头部模版一般位于 usr/themes/default/header.php 可以查找到: <!DOCTYPE html> 在这一行的前面添加下面的代码:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<?php
if (stripos($this->request->getRequestUri(), 'json')) {
	$arr = array();
	while ($this->next()) {
		$a = array('title' => $this->title, 'date' => $this->date->format('Y-m-d'), 'content' => $this->content, 'categories' => $this->categories, 'tags' => $this->tags);
		$arr[] = $a;
	}
	$this->response->throwJson(array("servererror" => "", "status" => 1, "message" => $arr));
}
?>