本文整理汇总了PHP中PersonPeer::doSelectOne方法的典型用法代码示例。如果您正苦于以下问题:PHP PersonPeer::doSelectOne方法的具体用法?PHP PersonPeer::doSelectOne怎么用?PHP PersonPeer::doSelectOne使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PersonPeer
的用法示例。
在下文中一共展示了PersonPeer::doSelectOne方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPerson
/**
* Get the associated Person object
*
* @param PropelPDO Optional Connection object.
* @return Person The associated Person object.
* @throws PropelException
*/
public function getPerson(PropelPDO $con = null)
{
if ($this->aPerson === null && $this->person_id !== null) {
$c = new Criteria(PersonPeer::DATABASE_NAME);
$c->add(PersonPeer::ID, $this->person_id);
$this->aPerson = PersonPeer::doSelectOne($c, $con);
/* The following can be used additionally to
guarantee the related object contains a reference
to this object. This level of coupling may, however, be
undesirable since it could result in an only partially populated collection
in the referenced object.
$this->aPerson->addWingLeaders($this);
*/
}
return $this->aPerson;
}
示例2: getPerson
/**
* Get the associated Person object
*
* @param PropelPDO Optional Connection object.
* @return Person The associated Person object.
* @throws PropelException
*/
public function getPerson(PropelPDO $con = null)
{
if ($this->aPerson === null && $this->person_id !== null) {
$c = new Criteria(PersonPeer::DATABASE_NAME);
$c->add(PersonPeer::ID, $this->person_id);
$this->aPerson = PersonPeer::doSelectOne($c, $con);
// Because this foreign key represents a one-to-one relationship, we will create a bi-directional association.
$this->aPerson->setPersonalNote($this);
}
return $this->aPerson;
}