dongsuyou6938 2014-05-12 04:43
浏览 51
已采纳

json数据转换为php变量

I have to parse this json data using PHP and store the values into PHP variables.

{  
"sender": "am@email.com",  
"receiver": "ak@email.com",  
"msg_id": "msg1_am@email.com",   
"subject": "Group Discussion",   
"references": ["msg1_aman@email.com","msg1_s@email.com","msg1_v@email.com"]
}

I am using this PHP code, its not working; pls check it.

For the fields 'sender', 'receiver', 'msg_id'and 'subject, I am using PHP variables '$msg_id', '$sender', '$receiver' and '$subject'.
I am trying to store the data of 'references' in the array 'ref_id'.

Also, the file 'dataset_f.json' has content in the following way:

{ "sender":"aman@email.com","receiver":"akash@email.com","msg_id":"msg1_aman@email.com","subject": "Project Discussion","references":["msg1_aman@email.com","msg1_s@email.com","msg1_v@email.com"]}

{ "sender":"akash@email.com","receiver":"aman@email.com","msg_id":"msg1_akash@email.com","subject": "Project Discussion","references":["msg1_aman@email.com","msg1_s@email.com","msg1_v@email.com"]}

Thats why the php code is reading the file line by line

<?php
$h1 = fopen("dataset_f.json", "r");
while(!feof($h1)){
$line = fgets($h1);
$test_case = json_decode($line);

$ref_id = array();
$msg_id = $test_case->{'msg_id'};
$sender = $test_case->{'sender'};
$receiver = $test_case->{'receiver'};
$subject = $test_case->{'subject'};
foreach($test_case as $val)
 {
    foreach($val -> references as $refer)
    {
        array_push($ref_id, $refer->ref);
    }
 }

// printing the values
$arrlen=count($ref_id);
 for($x=0;$x<$arrlen;$x++)
 { echo $ref_id[$x]." "; }
echo $msg_id." ".$sender." ".$receiver." ".$subject." <br> ";

}
?>
  • 写回答

1条回答 默认 最新

  • dsagzmosl32217092 2014-05-12 05:14
    关注

    Store the whole file as a string, decode it and store the values in you variables. Show the json your using. your using the -> incorrect, thats for objects not arrays, json_decode() returns an associative array if the next param is true. ref_id will hold a string thats comma separated.

    dataset_f.json

    {
        "sender":"am@email.com",
        "receiver":"ak@email.com",
        "msg_id":"msg1_am@email.com",
        "subject":"Group Discussion",
        "references":["msg1_aman@email.com","msg1_s@email.com","msg1_v@email.com"]
    }
    

    php code

    $json = file_get_contents("dataset_f.json");
    
    $data = json_decode($json, true);
    
    // here depends on the json
    
    $ref_id = ( ( is_array( $data["references"] ) ? implode(", ", $data["references"]) : $data["references"] ) ); // array to string
    $msg_id = $data["msg_id"];
    $sender = $data["sender"];
    $receiver = $data["receiver"];
    $subject = $data["subject"];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab实现基于主成分变换的图像融合。
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊