“PHP JSON -Anfrage erhalten Wert eines Array -Elements” Code-Antworten

PHP JSON -Anfrage erhalten Wert

<?php
$jsonurl = "https://reqres.in/api/users/2";
$json = file_get_contents($jsonurl);
$jsonDecode = json_decode($json, true);
echo $jsonDecode['data']['email'];
?>
Apollo

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

Ähnliche Antworten wie “PHP JSON -Anfrage erhalten Wert eines Array -Elements”

Fragen ähnlich wie “PHP JSON -Anfrage erhalten Wert eines Array -Elements”

Weitere verwandte Antworten zu “PHP JSON -Anfrage erhalten Wert eines Array -Elements” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen