“PHP bekommen JSON Array” Code-Antworten

PHP ist Json String

function IsJsonString(str) {
    try {
        JSON.parse(str);
    } catch (e) {
        return false;
    }
    return true;
}
Joyous Jaguar

PHP JSON -Anfrage erhalten Wert eines Array -Elements

<?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>";
}
?>
Apollo

So erhalten Sie Daten von JSON Array in PHP

 $data = json_decode($json);
Modern Mockingbird

PHP bekommen 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
Tense Thrush

RETSURE JSON in PHP zurück

//code igniter
$query="qry";
$query = $this->db->query($query);
$res=$query->result();
return json_encode($res);
Annoyed Armadillo

Ähnliche Antworten wie “PHP bekommen JSON Array”

Fragen ähnlich wie “PHP bekommen JSON Array”

Weitere verwandte Antworten zu “PHP bekommen JSON Array” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen