使用php和regex从json数据中获取价格

时间:2017-03-28 04:15:02

标签: php json regex

我试图使用php从json输出中提取价格。

价格列为"price": "49.00",我知道我需要使用preg_match,但我遇到了正则表达式问题(可能)

在查找preg_match时,"price": "49.00"也是最佳功能吗?

可以在此处找到代码:https://pastebin.com/BCxh1nmT

1 个答案:

答案 0 :(得分:1)

 $var = json_decode ($output, true);

将使用JSON中的值生成$ var数组。然后像往常一样使用它来获取所需的信息,如:

 print $var["price"];