“PHP JSON -Anfrage erhalten Wert” 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 Read JSON Anforderungskörper

//e.g your JSON Req is like this {"UserName":"Ranish","Password":"asdasdasd"}
$jsonReqUrl  = "php://input";
$reqjson = file_get_contents($jsonReqUrl);
$reqjsonDecode = json_decode($reqjson, true);
echo $reqjsonDecode['UserName'];
Ranish

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

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

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen