Skip to content

Instantly share code, notes, and snippets.

@fael
Created November 21, 2012 17:04
Show Gist options
  • Save fael/4126068 to your computer and use it in GitHub Desktop.
Save fael/4126068 to your computer and use it in GitHub Desktop.
CakePHP Contain Example
$conditions = array(
'conditions' => array('codigo' => '24150'),
'contain' => array(
'Card'=>array(
'Partner' => array (
'Contact' => array(
'conditions' => array('Contact.coords_lat' => '38.710930')
)
)
)
)
);
$parceiros = $this->Client->find('all', $conditions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment