Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 12288 bytes) in /Applications/XAMPP/xamppfiles/htdocs/cartao/banco-cliente.php on line 29
26 function listaFamilia($conexao){
27 $clientes = [];
28 $resultado = pg_query($conexao, "select * from pessoa_abril_2018");
29 while ($cliente = pg_fetch_assoc($resultado)) {
30 array_push($clientes, $cliente);
}
return $clientes;
}