“PHP analyse JSON” Réponses codées

PHP analyse JSON

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

$person = json_decode($personJSON);

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

Fichier JSON de décodage PHP

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

javascript analyse json

var jsonPerson = '{"first_name":"billy", "age":23}';
var personObject = JSON.parse(jsonPerson); //parse json string into JS object
Grepper

javascript analyse json

const json = '{ "fruit": "pineapple", "fingers": 10 }';
const obj = JSON.parse(json);
console.log(obj.fruit, obj.fingers);
Distinct Dormouse

Array PHP de décodage JSON

<?php
    $json=file_get_contents("http://west.basketball.nl/db/json/stand.pl?szn_Naam=2014-2015&cmp_ID=373");
    $data =  json_decode($json);

    if (count($data->stand)) {
        // Open the table
        echo "<table>";

        // Cycle through the array
        foreach ($data->stand as $idx => $stand) {

            // Output a row
            echo "<tr>";
            echo "<td>$stand->afko</td>";
            echo "<td>$stand->positie</td>";
            echo "</tr>";
        }

        // Close the table
        echo "</table>";
    }
?>
Fierce Fly

PHP analyse JSON

// scrap this:
$data = json_decode($rawdata);

// use this:
$data = json_decode($rawdata, true);
echo $data["key1"];
Supreme Oreo

Réponses similaires à “PHP analyse JSON”

Questions similaires à “PHP analyse JSON”

Plus de réponses similaires à “PHP analyse JSON” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code