Siteme webservis yazmaya çalışıyorum. Mysql verileri dizi halinde çekip json_encode ile çevirmeye çalıştığımda post_content satırında link,img gibi html kodları olduğu zaman çıktı aşağıdaki gibi oluyor.
Gördüğünüz gibi düzgün görüntülenemiyyor. Kodlarım aşağıdaki gibidir.
public function get_posts($status=false) {
$sql = "select * from wp_posts where post_status='publish' and post_type='post' order by ID DESC limit 0,1";
$query = mysql_query($sql);
$posts = array();
while ($result = mysql_fetch_assoc($query)):
$this->posts[] = array("posts" => $result["post_content"]);
endwhile;
}
public function get_json() {
$this->get_posts();
header('Content-type: application/json');
echo json_encode(array('posts' => $this->posts));
}
Sitem wordpress bir sistem. Tüm sitenin webservisini json formatında verebilecek başka bir sistem varsa da fikirleri alabilirim