Convert JSON string to Array in php Get link Facebook X Pinterest Email Other Apps By Arun Verma - January 25, 2016 $json_string = '{ "title": "PHP: The Definitive Guide", "author": "Arun Verma", }' ; $res = json_decode ( $json , true ) ; echo $res [ 'title' ] ; // PHP: The Definitive Guide Read more