Skip to content

Instantly share code, notes, and snippets.

@davialexandre
Created October 19, 2012 18:01
Show Gist options
  • Save davialexandre/3919660 to your computer and use it in GitHub Desktop.
Save davialexandre/3919660 to your computer and use it in GitHub Desktop.
Relations - exemplos
<?php
class Os extends CActiveRecord {
public function relations() {
return array(
'cliente' => array(self::BELONGS_TO, 'Cliente', 'id_cliente'),
);
}
}
$os = Os::model()->findByPk(1);
echo $os->cliente->nome_fantasia;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment