欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php取出json值?

程序员文章站 2022-05-08 20:45:50
...
"order":{"result": "true", "arrive": "true", "first_fee": "12.00", "continue_fee": "8.00",…}

我想把order去掉 取出里面的值 我该怎么办?

回复内容:

"order":{"result": "true", "arrive": "true", "first_fee": "12.00", "continue_fee": "8.00",…}

我想把order去掉 取出里面的值 我该怎么办?

1.麻烦的办法

使用正则匹配,极其不建议

2.把json转成数组

$array = json_decode($json_str, true);

这样子,这样就好看很多啦~

$new_json_str = json_encode($array['order']);

这样 $new_json_str 即是去掉order之后的新json串了。

相关标签: php