-1

我正在使用JSON API,并且想要解析没有 html 标签的帖子内容(明文)。

我尝试使用htmlspecialchars(json_encode($posts))strip_tags($posts);无法从 JSON 中删除 html 标签。

不确定我是否正确放置它,因为我是 php 新手。

public function get_category_posts() {
global $json_api;
$category = $json_api->introspector->get_current_category();
if (!$category) {
  $json_api->error("Not found.");
}
$posts = $json_api->introspector->get_posts(array(
  'cat' => $category->id
));
$result = strip_tags($posts);
return $this->posts_object_result($result, $category);
}

JSON

"posts": [
{
  "id": 3454,
  "type": "post",
  "status": "publish",
  "title": "XYZ JOINS",
  "content": "<p>This is the content that should not have html tags.<\/p>\n",
  "date": "2012-05-16 22:06:55"
}
]

我想<p></p>从上面的 json 中删除 html 标签。内容中有许多 div 和其他 html 标签。

4

1 回答 1

0

我认为您只需要一个简单的正则表达式即可从内容中去除 html 样式标签。也许这会奏效

str.replace(/<\/?[^>]+>/gi, '')
于 2013-03-20T17:44:32.280 回答