Columns of sql server tables are not recognized in php

0

I have columns that were written to the sql server with a capital letter, when I get it in php, I need them to recognize both lowercase and uppercase.

For example:

select * from rzv_aluno

records:

AL_NOME, AL_EMPRESA... etc

In php I can only see the records if I point

$r->AL_NOME

I wish there was no difference between

$r->AL_NOME e $r->al_nome
    
asked by anonymous 11.09.2018 / 22:44

0 answers