“JSON URL Decode PHP” Kode Jawaban

php json_decode

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

$person = json_decode($personJSON);

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

JSON URL Decode 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

php mendekode objek json

<?php

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

$personInfo = json_decode(json);

echo $personInfo->age;

?>
Apollo

Jawaban yang mirip dengan “JSON URL Decode PHP”

Pertanyaan yang mirip dengan “JSON URL Decode PHP”

Lebih banyak jawaban terkait untuk “JSON URL Decode PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya