$dados= '{"nome":"teste","cpf":"teste"}';
$value = json_decode($dados, TRUE);
foreach($value as $in)
{
$nome = $in->{'nome'};
$cpf = $in->{'cpf'};
}
I'm trying to get the data, but the value name and cpf comes null !!!
$dados= '{"nome":"teste","cpf":"teste"}';
$value = json_decode($dados, TRUE);
foreach($value as $in)
{
$nome = $in->{'nome'};
$cpf = $in->{'cpf'};
}
I'm trying to get the data, but the value name and cpf comes null !!!
Try this:
$dados= '[{"nome":"teste","cpf":"teste"}]';
$value= json_decode($dados, TRUE);
foreach($vaue as $in)
{
$nome = $in['nome'];
$cpf $in['cpf'];
}