Skip to content

Instantly share code, notes, and snippets.

@irwinv
Created June 28, 2012 11:25
Show Gist options
  • Save irwinv/3010763 to your computer and use it in GitHub Desktop.
Save irwinv/3010763 to your computer and use it in GitHub Desktop.
Objet to Array et des objets lié avec request
$results = Doctrine::getTable('Formation')->createSearchQuery('*:*', 0, 25, $params)->execute();
foreach($results as $result){
$test[] = array(
'nom' => $result->getNom(),
'ecoleNom' => $result->Entreprise->getNom());
//$results[] = (array) $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment