que estaba teniendo una pregunta acerca de hacer un 2D JSON stringPHP JSON decodificar - stdClass
Ahora me gustaría saber por qué no puedo acceder a la siguiente:
$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
excelente respuesta, vítores Sarfraz – FFish
@FFish: Bienvenido :) – Sarfraz