j'avais une question à faire un 2D JSON stringPHP JSON decode - stdClass
Maintenant, je voudrais savoir pourquoi je ne peux pas accéder aux éléments suivants:
$json_str = '{"urls":["http://example.com/001.jpg","http://example.com/003.jpg","http://example.com/002.jpg"],"alts":["testing int chars àèéìòóù stop","second description",""],"favs":["true", "false", "false"]}';
$j_string_decoded = json_decode($json_str);
// echo print_r($j_string_decoded); // OK
// test get url from second item
echo j_string_decoded['urls'][1];
// Fatal error: Cannot use object of type stdClass as array
bonne réponse, acclamations Sarfraz – FFish
@FFish: Bienvenue :) – Sarfraz