Andryon PHProgrammer Posted November 17, 2011 Report Share Posted November 17, 2011 Pessoal,tenho o seguinte retorno com o print_r:Array ( [ConsultaRoteirizacaoResult] => Array ( [codStatus] => -10 [status] => Funcion�rio n�o Encontrado [idaTempo] => 0 [idaValor] => 0 [voltaTempo] => 0 [voltaValor] => 0 ) ) Como faço para escrever as chaves seguidas dos valores? Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted November 17, 2011 Report Share Posted November 17, 2011 foreach($nome_do_array as $ind=>$val){ echo "$ind - $val"; } Quote Link to comment Share on other sites More sharing options...
0 Hugo Demiglio Posted November 17, 2011 Report Share Posted November 17, 2011 Desse jeito não funciona, os dados devem ser tratados como string.Tente assim:foreach($nome_do_array as $indice => $valor){ echo $indice . ' - '. $valor; } Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted November 17, 2011 Report Share Posted November 17, 2011 Realmente, era para ter saído:echo "$ind - $val"; Quote Link to comment Share on other sites More sharing options...
Question
Andryon PHProgrammer
Pessoal,
tenho o seguinte retorno com o print_r:
Array ( [ConsultaRoteirizacaoResult] => Array ( [codStatus] => -10 [status] => Funcion�rio n�o Encontrado [idaTempo] => 0 [idaValor] => 0 [voltaTempo] => 0 [voltaValor] => 0 ) )
Como faço para escrever as chaves seguidas dos valores?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.