Answers for "convert php array json_encode to js object"

PHP
9

php json_encode

$person = array( 
    "name" => "Johny Carson", 
    "title" => "CTO"
); 
$personJSON=json_encode($person);//returns JSON string
Posted by: Guest on July-01-2019

Code answers related to "convert php array json_encode to js object"

Browse Popular Code Answers by Language