How to place array values within a variable?

Asked

Viewed 110 times

-1

Hello, I’m new to programming and I’m making a call from an array of objects like this:

$retorno = enviarREST($url, $data);
$content = json_decode($retorno);

foreach ($content->retorno as $produto){
    echo "SKU: ".$produto->codigo . "<br/>";  
    echo "NCM:  ".$produto->ncm . "<br/>";
    echo "Origem:  ".$produto->origem . "<br/>";
    echo "EAN:  ".$produto->gtin . "<br/>";
    echo "Codigo fabricante:  ".$produto->codigo_pelo_fornecedor . "<br/>";
}

and my goal is to put the result of this flame inside a varialvel, there is some tool for this?

1 answer

2

I don’t know if I get it, but it wouldn’t just be creating a variable first and concatenating it?

$res = "";   
foreach ($content->retorno as $produto) {
    $res = "SKU: ".$produto->codigo . "<br/>";  
    $res .= "NCM:  ".$produto->ncm . "<br/>";
    $res .= "Origem:  ".$produto->origem . "<br/>";
    $res .= "EAN:  ".$produto->gtin . "<br/>";
    $res .= "Codigo fabricante:  ".$produto->codigo_pelo_fornecedor . "<br/>";
}
    
echo($res);

Browser other questions tagged

You are not signed in. Login or sign up in order to post.