fork download
  1. <?php
  2.  
  3. $json = json_decode('{"csTipoPagamento":"20","csClassificacao":"14","csContrato":"41","csFornecedor":"Nome_do_Fornecedor","csNotaFiscal":"2316549-9","csValorNotaFiscal":"2413.08","csCnpj":"Uma_numeração_de_CNPJ","csEmissao":"28/06/2015","csVencimento":"28/07/2015","csMunicipio":"275","csDtpInicial":"01/06/2015","csDtpFinal":"30/06/2015","csRefPgto":"9","csIngressSpd":"29/06/2015","csData":"02/07/2015","csLiId":"O_Id","csMedicao":"A_Medição","csPedido":"Numeração_do_pedido","csDtpRecebNota":"30/06/2015","csDescServico":"Uma_Descrição","csObservacoes":"Uma_Observação","tabLinhas":[["33","12","102","1","12","2413.08","569659","201.09"],["33","12","102","1","12","2413.08","569659","201.09"]]}');
  4.  
  5. foreach ($json->tabLinhas as $key=>$value) {
  6. echo "\n" . $key . ": " . $value;
  7. foreach ($value as $k=>$v) {
  8. echo $k . ": " . $v . ", ";
  9. }
  10. }
Success #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
0: Array0: 33, 1: 12, 2: 102, 3: 1, 4: 12, 5: 2413.08, 6: 569659, 7: 201.09, 
1: Array0: 33, 1: 12, 2: 102, 3: 1, 4: 12, 5: 2413.08, 6: 569659, 7: 201.09, 
stderr
PHP Notice:  Array to string conversion in /home/jGEpmP/prog.php on line 6
PHP Notice:  Array to string conversion in /home/jGEpmP/prog.php on line 6