Answers for "how to get json array of object values in php"

PHP
0

php json request get value of an array element

<?php
$jsonurl = "https://reqres.in/api/users?page=2";
$json = file_get_contents($jsonurl);
$jsonDecode = json_decode($json, true);
var_dump($jsonDecode['data']);
foreach($jsonDecode['data'] as $mydata){
    echo $mydata['email'] . "<br>";
}
?>
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
0

php get json array

$json = '
{
    "type": "donut",
    "name": "Cake",
    "toppings": [
        { "id": "5002", "type": "Glazed" },
        { "id": "5006", "type": "Chocolate with Sprinkles" },
        { "id": "5004", "type": "Maple" }
    ]
}';

$yummy = json_decode($json, true);

echo $yummy['toppings'][2]['type']; //Maple
Posted by: Guest on February-01-2021

Code answers related to "how to get json array of object values in php"

Browse Popular Code Answers by Language