S
S
santavits2019-11-19 21:50:07
PHP
santavits, 2019-11-19 21:50:07

How is this json parsed in php?

I get this response in json format

{"id":4812159,"title":null,"kind":1,"max_count":100,"cost":1,"current_count":100,"created_at":"2019-11-19T20:36:28.471+03:00","paused":false,"suspended":false,"finished":false,"last_order_at":"2019-11-19T20:36:28.471+03:00","current_limits_optimized":", , , , , ","included_tag_list":[],"checking_tasks_count":0}{"order":"4812159"}

Everything would be fine, but there are 2 json responses in one, and no matter how I tried, I still can’t parse
it, you need to get the order value

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Anton Neverov, 2019-11-19
@santavits

$string = '{"id":4812159,"title":null,"kind":1,"max_count":100,"cost":1,"current_count":100,"created_at":"2019-11-19T20:36:28.471+03:00","paused":false,"suspended":false,"finished":false,"last_order_at":"2019-11-19T20:36:28.471+03:00","current_limits_optimized":", , , , , ","included_tag_list":[],"checking_tasks_count":0}{"order":"4812159"}';

$data = explode('}{', $string);
$jsonOne = json_decode($data[0].'}', true);
$jsonTwo = json_decode('{'.$data[1], true);

echo $jsonTwo['order']; //4812159

M
mt. NATS, 2019-11-20
@Dimastik86

if(isJSON(data))
+
recursion

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question