我想将 CSV 文件导出到 JSON 文件,需要在推荐字段读取值并写入 JSON 文件。示例:IN row 1,recomnend =2 将读取 id=2 的行并打印到 JSON 文件的值:id,product_id,title。
$json = array();
$json['id'] = $row['id'];
$json['product_id'] = $row['product_id'];
$json['title'] = $row['title'];
$json['outline'] = $row['outline'];
$recom[] = $json;
print json_encode($recom);
http://ns0.upanh.com/b6.s33.d3/3a3ebb93a87c5703f673b399d5613ec2_50639320.untitled.png