“JSON COD CODE DECODE PHP” Code-Antworten

PHP JSON_DECODE

$personJSON = '{"name":"Johny Carson","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // Johny Carson
Grepper

PHP -Dekodierung JSON -Datei

$json = json_decode(file_get_contents('/path/to/your/file.json'));
Kaotik

JSON -URL -Dekodierung PHP

$json = file_get_contents('http://api.geonames.org/findNearbyPlaceNameJSON?lat=51.9877644&lng=-1.47866&username=demo');

$data = json_decode($json,true);

$Geonames = $data['geonames'][0];

echo "<pre>";

print_r($Geonames);

exit;
Upset Unicorn

JSON COD CODE DECODE PHP

$json = '{"a":1,"b":2,"c":3}';
var_dump(json_decode($json)); //converts json to array

$array = [ "a" => 1, "b" => 2, "c" => 3];
echo json_encode($json_encode($json)); //converts array to json
Armandres

PHP -Dekodus JSON -Objekt

<?php

$json = '{"firstName":"Peter","lastName:":"Silva","age":23}';

$personInfo = json_decode(json);

echo $personInfo->age;

?>
Apollo

Ähnliche Antworten wie “JSON COD CODE DECODE PHP”

Fragen ähnlich wie “JSON COD CODE DECODE PHP”

Weitere verwandte Antworten zu “JSON COD CODE DECODE PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen