“JSON_DECODE” Code-Antworten

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

JSON PHPH analysieren

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

Ähnliche Antworten wie “JSON_DECODE”

Fragen ähnlich wie “JSON_DECODE”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen