fork download
  1. <?php
  2. $array_banco = array(array('field' => 'data', 'description' => 'Data cadastro'),
  3. array('field' => 'ndereco', 'description' => 'Endereco')
  4. );
  5. foreach($array_banco as $item){
  6. $fields[$item['field']] = $item['description'];
  7. }
  8. var_dump($fields);
  9.  
  10. //https://pt.stackoverflow.com/q/45323/101
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
array(2) {
  ["data"]=>
  string(13) "Data cadastro"
  ["ndereco"]=>
  string(8) "Endereco"
}