Answers for "how to get all the json value in php"

PHP
0

php json request get value

<?php
$jsonurl = "https://reqres.in/api/users/2";
$json = file_get_contents($jsonurl);
$jsonDecode = json_decode($json, true);
echo $jsonDecode['data']['email'];
?>
Posted by: Guest on October-27-2020
2

how to get data from json array in php

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

Code answers related to "how to get all the json value in php"

Browse Popular Code Answers by Language