Support

Account

Home Forums General Issues Can I save json/ serialized array to a text field? Reply To: Can I save json/ serialized array to a text field?

  • You need to set the second parameter of json_decode to true http://php.net/manual/en/function.json-decode.php

    
    $array = json_decode($json, true);