Good evening, I'm new to the programming world, I'm getting information from a webservice via json, and now I need to manipulate this json's information, for example, I'd like to just get the [name], someone could give me one north. Thanks in advance.
//Recebendo o Json
$dados= json_decode($response);
echo "<pre>";
print_r($dados);
echo "</pre>";
// Dados Exibidos
stdClass Object
(
[data] => Array
(
[0] => stdClass Object
(
[uuid] => 8ec4e4c4d6c78a7ab7692c410448a5b7ebcb3bad
[nome] => TESTANDOAPI2
[slug] => testandoapi2
[created] => 2018-10-15 13:06:16
[total] => 0
)
[1] => stdClass Object
(
[uuid] => aa02900bff1081c1a12d998e9a15d6c01845af84
[nome] => TESTANDOAPI
[slug] => testandoapi
[created] => 2018-10-15 12:53:05
[total] => 0
)
)
[total] => 2
)
I'm using PHP to receive the data, I need to handle the response and display it on the screen.