“PHP Parse JSON” Respostas de código

PHP Parse JSON

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

$person = json_decode($personJSON);

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

Arquivo JSON de decodificação php

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

JavaScript Parse JSON

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

JavaScript Parse JSON

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

JSON decodifica a matriz PHP

<?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 Parse JSON

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

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

Respostas semelhantes a “PHP Parse JSON”

Perguntas semelhantes a “PHP Parse JSON”

Mais respostas relacionadas para “PHP Parse JSON” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código