“PHP JSON_ENCODE” Código de respuesta

PHP Echo JSON

<?php
$data = ['name' => 'John', 'age' => 35];
header('Content-type: Application/json');
echo json_encode($data);
ArtesanoMultimedia

PHP JSON_DECODE

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

$person = json_decode($personJSON);

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

Cómo json_encode una matriz en PHP Identificador inesperado

// Don't wrap the json_encode result in quotes
var data = <?php echo json_encode($serializedData) ?>;
Dizzy Dog

PHP JSON_ENCODE

$person = array( 
    "name" => "Johny Carson", 
    "title" => "CTO"
); 
$personJSON=json_encode($person);//returns JSON string
Grepper

PHP Array JSON Code Clave y valor

json_encode($thearray, JSON_FORCE_OBJECT)
Shadow

matriz de PHP de JSondecode

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

Respuestas similares a “PHP JSON_ENCODE”

Preguntas similares a “PHP JSON_ENCODE”

Más respuestas relacionadas con “PHP JSON_ENCODE” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código