Format::_from_json PHP 메소드

_from_json() 보호된 메소드

protected _from_json ( string $data ) : mixed
$data string Encoded json string
리턴 mixed Decoded json string with leading and trailing whitespace removed
    protected function _from_json($data)
    {
        return json_decode(trim($data));
    }