php中json数据处理的问题

php中文网
发布: 2016-10-19 10:40:52
原创
1419人浏览过

微店api推送的订单信息格式如下:

佳蓝智能应答系统
佳蓝智能应答系统

类似智能机器人程序,以聊天对话框的界面显示,通过输入问题、或点击交谈记录中的超链接进行查询,从而获取访客需要了解的资料等信息。系统自动保留用户访问信息及操作记录。后台有详细的设置和查询模块。适用领域:无人职守的客服系统自助问答系统智能机器人开发文档、资源管理系统……基本功能:设置对话界面的显示参数设置各类展示广告根据来访次数显示不同的欢迎词整合其他程序。

佳蓝智能应答系统 4
查看详情 佳蓝智能应答系统

立即学习PHP免费学习笔记(深入)”;

<code>content=
{"message":{
"seller_name":"天天向上","total":"0.10",
"express_fee":"0.00",
"buyer_identity_id":"0",
"f_phone":"",
"fx_fee_value":"0.00",
"express_type":null,
"express_note":"",
"modify_price_enable":"1",
"express":null,
"order_id":"774780580411340",
"order_type_des":"担保交易",
"confirm_expire":"",
"group_status":-1,
"send_time":null,
"weixin":"",
"is_close":0,
"argue_flag":0,
"total_fee":"0.00",
"status_desc":"未付款",
"quantity":"1",
"note":"",
"trade_no":null,
"sk":null,
"status":"unpay",
"discount_info":"无优惠",
"seller_phone":"18512345678",
"express_fee_num":"0.00",
"pay_time":"",
"discount_amount":"0",
"discount":null,
"real_income_price":"",
"price":"0.10",
"buyer_info":{
"buyer_id":"1024799624",
"region":"禹会区",
"phone":"15923808761",
"post":null,
"address":"安徽 蚌埠市 禹会区 城区回来了",
"name":"路过",
"self_address":"城区回来了",
"province":"安徽",
"city":"蚌埠"
},
"items":
[{
"is_delivered":0,
"img":"http://wd.geilicdn.com/vshop1024697422-1476758240117-CE6F5-s1.jpg?w=110&h=110&cp=1",
"total_price":"0.10",
"merchant_code":"",
"deliver_id":"0",
"url":"http://weidian.com/i/1969988669",
"deliver_status_desc":"",
"price":"0.10",
"sku_merchant_code":"",
"item_name":"测试商品",
"item_id":"1969988669",
"fx_fee_rate":"0%",
"quantity":"1",
"can_deliver":1,
"refund_info":{"refund_no":"",
"refund_fee":"0",
"refund_status_str":"",
"item_id":"1969988669",
"item_sku_id":"0",
"refund_status":"",
"refund_express_fee":"0",
"can_refund":"0",
"refund_item_fee":"0",
"refund_status_desc":""},
"sku_id":"0","sku_title":null
}],
"user_phone":"15912345678",
"status2":"未付款",
"f_seller_id":"",
"seller_id":"1024697422",
"add_time":"2016-10-18 13:25:54",
"refund_info":
{
"buyer_refund_fee":null,
"refund_time":null},
"return_code":"",
"express_no":null,
"f_shop_name":"",
"original_total_price":"",
"order_type":"3"
},
"type":"weidian.order.non_payment"
}&public={"x_forwarded_for":null}
</code>
登录后复制

需要获得其中某一个或者几个字段的数据,这里有两段json信息,求问大神应该怎么处理呢?

如果是

<code>{"seller_name":"天天向上","total":"0.10",
"express_fee":"0.00",
"buyer_identity_id":"0",
"f_phone":"",
"fx_fee_value":"0.00",
"express_type":null,
"express_note":"",
"modify_price_enable":"1",
"express":null,
"order_id":"774780580411340"}
</code>
登录后复制

这样的格式,应该下面的代码就可以

<code><?php
$input = file_get_contents("php://input"); //接收POST数据
$arr=json_decode($input, true); 
file_put_contents("test.txt",$arr[order_id], FILE_APPEND);//以将order_id追加如文本文档为例
?></code>
登录后复制

回复内容:

微店api推送的订单信息格式如下:

立即学习PHP免费学习笔记(深入)”;

<code>content=
{"message":{
"seller_name":"天天向上","total":"0.10",
"express_fee":"0.00",
"buyer_identity_id":"0",
"f_phone":"",
"fx_fee_value":"0.00",
"express_type":null,
"express_note":"",
"modify_price_enable":"1",
"express":null,
"order_id":"774780580411340",
"order_type_des":"担保交易",
"confirm_expire":"",
"group_status":-1,
"send_time":null,
"weixin":"",
"is_close":0,
"argue_flag":0,
"total_fee":"0.00",
"status_desc":"未付款",
"quantity":"1",
"note":"",
"trade_no":null,
"sk":null,
"status":"unpay",
"discount_info":"无优惠",
"seller_phone":"18512345678",
"express_fee_num":"0.00",
"pay_time":"",
"discount_amount":"0",
"discount":null,
"real_income_price":"",
"price":"0.10",
"buyer_info":{
"buyer_id":"1024799624",
"region":"禹会区",
"phone":"15923808761",
"post":null,
"address":"安徽 蚌埠市 禹会区 城区回来了",
"name":"路过",
"self_address":"城区回来了",
"province":"安徽",
"city":"蚌埠"
},
"items":
[{
"is_delivered":0,
"img":"http://wd.geilicdn.com/vshop1024697422-1476758240117-CE6F5-s1.jpg?w=110&h=110&cp=1",
"total_price":"0.10",
"merchant_code":"",
"deliver_id":"0",
"url":"http://weidian.com/i/1969988669",
"deliver_status_desc":"",
"price":"0.10",
"sku_merchant_code":"",
"item_name":"测试商品",
"item_id":"1969988669",
"fx_fee_rate":"0%",
"quantity":"1",
"can_deliver":1,
"refund_info":{"refund_no":"",
"refund_fee":"0",
"refund_status_str":"",
"item_id":"1969988669",
"item_sku_id":"0",
"refund_status":"",
"refund_express_fee":"0",
"can_refund":"0",
"refund_item_fee":"0",
"refund_status_desc":""},
"sku_id":"0","sku_title":null
}],
"user_phone":"15912345678",
"status2":"未付款",
"f_seller_id":"",
"seller_id":"1024697422",
"add_time":"2016-10-18 13:25:54",
"refund_info":
{
"buyer_refund_fee":null,
"refund_time":null},
"return_code":"",
"express_no":null,
"f_shop_name":"",
"original_total_price":"",
"order_type":"3"
},
"type":"weidian.order.non_payment"
}&public={"x_forwarded_for":null}
</code>
登录后复制

需要获得其中某一个或者几个字段的数据,这里有两段json信息,求问大神应该怎么处理呢?

如果是

<code>{"seller_name":"天天向上","total":"0.10",
"express_fee":"0.00",
"buyer_identity_id":"0",
"f_phone":"",
"fx_fee_value":"0.00",
"express_type":null,
"express_note":"",
"modify_price_enable":"1",
"express":null,
"order_id":"774780580411340"}
</code>
登录后复制

这样的格式,应该下面的代码就可以

<code><?php
$input = file_get_contents("php://input"); //接收POST数据
$arr=json_decode($input, true); 
file_put_contents("test.txt",$arr[order_id], FILE_APPEND);//以将order_id追加如文本文档为例
?></code>
登录后复制
相关标签:
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号