“JSON_DECODE” Código de respuesta

PHP JSON_DECODE

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

$person = json_decode($personJSON);

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

PHP JSON_ENCODE

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

JSON_DECODE

<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
 
var_dump(json_decode($json));
var_dump(json_decode($json, true));
 
?>
Encouraging Echidna

analizar json phph

echo json_decode("[1,2,3]")[0];
1337

Respuestas similares a “JSON_DECODE”

Preguntas similares a “JSON_DECODE”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código