Answers for "get the values inside of json string php"

PHP
2

how to get data from json array in php

$data = json_decode($json);
Posted by: Guest on August-15-2020
1

return json in php

//code igniter
$query="qry";
$query = $this->db->query($query);
$res=$query->result();
return json_encode($res);
Posted by: Guest on September-24-2020

Code answers related to "get the values inside of json string php"

Browse Popular Code Answers by Language