Convert JSON string to array Fixed

    By: Thad Mertz
    3 years ago
    Category: PHPViews: 10

    Just pass json string in json_decode() function.

    $array = json_decode($your_json_string, TRUE);
    

    That's it