本文整理汇总了PHP中Propel\Tests\Bookstore\Author::setId方法的典型用法代码示例。如果您正苦于以下问题:PHP Author::setId方法的具体用法?PHP Author::setId怎么用?PHP Author::setId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Tests\Bookstore\Author
的用法示例。
在下文中一共展示了Author::setId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
protected function setUp()
{
parent::setUp();
$publisher = new Publisher();
$publisher->setId(1234);
$publisher->setName('Penguin');
$author = new Author();
$author->setId(5678);
$author->setFirstName('George');
$author->setLastName('Byron');
$book = new Book();
$book->setId(9012);
$book->setTitle('Don Juan');
$book->setISBN('0140422161');
$book->setPrice(12.99);
$book->setAuthor($author);
$book->setPublisher($publisher);
$this->book = $book;
}
示例2: testEquals
/**
* Test the BaseObject#equals().
*/
public function testEquals()
{
BookstoreDataPopulator::populate();
$b = BookPeer::doSelectOne(new Criteria());
$c = new Book();
$c->setId($b->getId());
$this->assertTrue($b->equals($c), "Expected Book objects to be equal()");
$a = new Author();
$a->setId($b->getId());
$this->assertFalse($b->equals($a), "Expected Book and Author with same primary key NOT to match.");
}
示例3: testToArrayDeep
public function testToArrayDeep()
{
$author = new Author();
$author->setId(5678);
$author->setFirstName('George');
$author->setLastName('Byron');
$book = new Book();
$book->setId(9012);
$book->setTitle('Don Juan');
$book->setISBN('0140422161');
$book->setPrice(12.99);
$book->setAuthor($author);
$coll = new ArrayCollection();
$coll->setModel('Propel\\Tests\\Bookstore\\Book');
$coll[] = $book->toArray(TableMap::TYPE_PHPNAME, true, array(), true);
$expected = array(array('Id' => 9012, 'Title' => 'Don Juan', 'ISBN' => '0140422161', 'Price' => 12.99, 'PublisherId' => null, 'AuthorId' => 5678, 'Author' => array('Id' => 5678, 'FirstName' => 'George', 'LastName' => 'Byron', 'Email' => null, 'Age' => null, 'Books' => array('Book_0' => '*RECURSION*'))));
$this->assertEquals($expected, $coll->toArray());
}