I have a array of objects .
Ex:
$array = array (1=$obj1, 2=$obj2...ect)
It turns out that I'm converting these objects into arrays also to have an array of arrays instead of a Array of objects with the purpose of transforming it into a array JSON
.
$todos = $produtosDao->pesquisaProdutos();
foreach ($todos as $cada):
$produto[] = (array) $cada;
endforeach;
Well, when I do print_r($produto)
, I have on screen the following:
Note: I will only post here the first record so that the post is not too long?
Array
(
[0] => Array
(
[ProdutosidProduto] => 1
[Produtostipo] => mp
[Produtosmodelo] => F540 2 BAN.PNEU. 100 X 60
[Produtosbandejas] => 2
[Produtospeso] => 0
[Produtosprensagem] => 0
[ProdutosprecoUnitario] => 6500
[Produtoscomprimento] => 100
[Produtoslargura] => 60
[Produtoscabo] => 0
[Produtosligacao] => n
[Produtospotencia] => 0
[Produtosconsumo] => 0
[Produtoscorrente] => 0
[Produtosdisjuntor] => 0
[Produtosdescricao] =>
Valor promocional limitado frete grátis ,para SP ,RJ ,MG ,ES. Os demais será cobrado apenas de SP para sua cidade ,valor de 500,00 ,a ser pago na entrega .
MAQUINA TOTALMENTE INDUSTRIAL E 100% NACIONAL .PRODUÇÃO DE ATÉ MIL PÇS POR DIA EM HORÁRIO NORMAL DE TRABALHO ,SISTEMA DIGITAL AUTOMATIZADO DE ÚLTIMA GERAÇÃO , SISTEMA PNEUMÁTICO COMPACTO E UNIFORME RECEBENDO A MESMA PRESSÃO EM TODA ÁREA DE ESTAMPAGEM, EVITANDO ASSIM OS SOMBREAMENTOS E EFEITOS FANTASMA NA ESTAMPA , SISTEMA DE RESISTÊNCIA DE ALTA QUALIDADE A MELHOR DO MERCADO AÇO INOX 304 , DANDO UMA VIDA ÚTIL MUITO SUPERIOR AS DEMAIS DO MERCADO , E FÁCIL TROCAS DAS RESISTÊNCIAS NÃO SENDO NECESSÁRIO TÉCNICO NO LOCAL , COM APENAS 4 PARAFUSOS O CLIENTE MESMO FAZ A TROCA, AS DEMAIS A RESISTÊNCIA É FUNDIDA NA CHAPA DE ALUMÍNIO SENDO IMPOSSÍVEL A TROCA APENAS DAS RESISTÊNCIAS , TEMOS TODAS AS PÇS DA PRENSA EM VALORES BEM ACESSÍVEIS.
[Produtosestoque] => 7
[ProdutosfreteGratis] => s
[Produtosbloqueado] => n
)
When I go to see the source code,