将值作为数组值获取

时间:2015-12-09 07:22:34

标签: php mysql arrays json

我想获取记录并显示为数组。select * from album_comment where SUB_ID='$id'显示图像中显示的行。    enter image description here

 $sql = "select * from album_comment where SUB_ID='$id'";
$query = mysql_query($sql) or sqlerrorhandler("(" . mysql_errno() . ") " . mysql_error(), $sql, __LINE__);
while ($comment_fet = mysql_fetch_assoc($query)) {
     $content = $comment_fet['CONTENT_VALUE'];
    $datas = json_decode($content);
 }
 echo $get_like = json_encode($content);

我想将值取为

$datas=[{"name":"hello","commentuser":"desc 259 desc","id":8,"date":"2015-12-09T05:40:12.773Z","displayDate":"Wed Dec 09 2015 11:10:12 GMT+0530 (India Standard Time)8","Like":0,"Unlike":0,"rating":0,"reportAbuse":0},

{"name":"hnnb","commentuser":"hjh ghj  ghj ghj","id":68,"date":"2015-12-09T06:00:44.718Z","displayDate":"Wed Dec 09 2015 11:30:44 GMT+0530 (India Standard Time)68","Like":0,"Unlike":0,"rating":0,"reportAbuse":0},

{"name":"56844","commentuser":"689 498 4849 48","id":45,"date":"2015-12-09T06:03:03.178Z","displayDate":"Wed Dec 09 2015 11:33:03 GMT+0530 (India Standard Time)45","Like":0,"Unlike":0,"rating":0,"reportAbuse":0},

{"name":"dcfg","commentuser":"bbnbvbvbnbb","id":60,"date":"2015-12-09T06:49:10.875Z","displayDate":"Wed Dec 09 2015 12:19:10 GMT+0530 (India Standard Time)60","Like":0,"Unlike":0,"rating":0,"reportAbuse":0}]

3 个答案:

答案 0 :(得分:2)

只需在while循环中放入$ datas []而不是$ datas。

$sql = "select * from album_comment where SUB_ID='$id'";
$query = mysql_query($sql) or sqlerrorhandler("(" . mysql_errno() . ")      " . mysql_error(), $sql, __LINE__);
while ($comment_fet = mysql_fetch_assoc($query)) {
    $content = $comment_fet['CONTENT_VALUE'];
    $datas[] = json_decode($content);
}
echo $get_like = json_encode($content);

答案 1 :(得分:1)

像这样更改你的代码,

while ($comment_fet = mysql_fetch_assoc($query)) {
    $content = $comment_fet['CONTENT_VALUE'];
    $datas[] = json_decode($content);// capture in array
}
echo $get_like = json_encode($datas);// encode array here

答案 2 :(得分:1)

你需要将它全部保存到数组中,如

$datas = array();
while ($comment_fet = mysql_fetch_assoc($query)) {
    $content = $comment_fet['CONTENT_VALUE'];
    $datas[] = json_decode($content);
}
echo $get_like = json_encode($datas);