2

我正在尝试使用下面的代码使用 PHP 生成一个 json 文件,我得到一个空数组 - > {“posts”:[]}。我正在使用 Wordpress。有人可以帮助我。谢谢

    $sql=mysql_query("SELECT * FROM wp_posts"); 

    $response = array();
    $posts = array();
    $result=mysql_query($sql);
    while($row=mysql_fetch_array($result)) 
    { 
    $url['url']=$row; 
    $title['title']=$row;

    $posts[] = array('url'=> $url, 'title'=> $title);

    } 

    $response['posts'] = $posts;

    $fp = fopen('results.json', 'w');
    fwrite($fp, json_encode($response));
    fclose($fp);
4

3 回答 3

3

你的代码有很多错误!请检查:

$result=mysql_query("SELECT * FROM wp_posts");

$i=0;
while($row=mysql_fetch_array($result)) { 
$response[$i]['url']  = $row['url']; 
$response[$i]['title']= $row['title'];
$data['posts'][$i] = $response[$i];
$i=$i+1;
} 

$json_string = json_encode($data);

$file = 'file.json';
file_put_contents($file, $json_string);
于 2013-05-22T23:24:42.283 回答
1

尝试这个

header('Content-Type: application/json');    
$sql=mysql_query("SELECT * FROM wp_posts"); 
$response = array();
$posts = array();
$result=mysql_query($sql);
while($row=mysql_fetch_array($result)) 
{ 
  $posts['url']=$row['url'];; 
  $posts['title']=$row['title'];
  array_push($response, $posts);
} 
$json = json_encode($response);
$file = 'file.json';
file_put_contents($file, $json);

参考:访问这里

于 2015-04-29T11:43:48.503 回答
0

问题出在您的 while 循环中。尝试这个:

while($row=mysql_fetch_array($result)) { 
    $url=$row['url']; 
    $title=$row['title'];

    $posts[] = array('url'=> $url, 'title'=> $title);
} 
于 2013-05-22T23:23:07.953 回答