Bug unserialize data PHP doesnt work

This is not PHP serialized data, use json_decode():

print_r(json_decode($data, true));

Leave a Comment