当前位置: 首页>>代码示例>>PHP>>正文


PHP Book::setId方法代码示例

本文整理汇总了PHP中Book::setId方法的典型用法代码示例。如果您正苦于以下问题:PHP Book::setId方法的具体用法?PHP Book::setId怎么用?PHP Book::setId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Book的用法示例。


在下文中一共展示了Book::setId方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: findOne

 /**
  * fake for test
  */
 public function findOne($con = null)
 {
     if (true === $this->bySlug) {
         $book = new Book();
         $book->setId(1);
         $book->setName('My Book');
         $book->setSlug('my-book');
         return $book;
     }
     return null;
 }
开发者ID:hhamon,项目名称:PropelBundle,代码行数:14,代码来源:BookQuery.php

示例2: 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 PropelObjectCollection();
     $coll->setModel('Book');
     $coll[] = $book;
     $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());
 }
开发者ID:keneanung,项目名称:gw2spidy,代码行数:18,代码来源:PropelObjectCollectionTest.php

示例3: 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;
 }
开发者ID:kalaspuffar,项目名称:php-orm-benchmark,代码行数:19,代码来源:BaseObjectConvertTest.php

示例4: setUp

 protected function setUp()
 {
     parent::setUp();
     $book1 = new Book();
     $book1->setId(9012);
     $book1->setTitle('Don Juan');
     $book1->setISBN('0140422161');
     $book1->setPrice(12.99);
     $book1->setAuthorId(5678);
     $book1->setPublisherId(1234);
     $book1->resetModified();
     $book2 = new Book();
     $book2->setId(58);
     $book2->setTitle('Harry Potter and the Order of the Phoenix');
     $book2->setISBN('043935806X');
     $book2->setPrice(10.99);
     $book2->resetModified();
     $this->coll = new PropelObjectCollection();
     $this->coll->setModel('Book');
     $this->coll[] = $book1;
     $this->coll[] = $book2;
 }
开发者ID:kalaspuffar,项目名称:php-orm-benchmark,代码行数:22,代码来源:PropelCollectionConvertTest.php

示例5: testEquals

 /**
  * Test the BaseObject#equals().
  */
 public function testEquals()
 {
     $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.");
 }
开发者ID:JimmyVB,项目名称:Symfony-v1.2,代码行数:13,代码来源:GeneratedObjectTest.php

示例6: _toObject

 private function _toObject($row)
 {
     $book = new Book();
     $book->setId($row->BookId);
     $book->setTitle($row->Title);
     $book->setTitle1($row->Title1);
     $book->setFormat($row->FileType);
     $book->setLang($row->Lang);
     $book->setSize($row->FileSize);
     $book->setDownloadsNumber($row->DownloadsNumber);
     $book->setIssueYear($row->Year);
     return $book;
 }
开发者ID:vitlav,项目名称:flibusta,代码行数:13,代码来源:BookDAO.php

示例7: testToKeyValue

 public function testToKeyValue()
 {
     $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 PropelObjectCollection();
     $coll->setModel('Book');
     $coll->append($book);
     $this->assertCount(1, $coll);
     // This will call $book->getId()
     $this->assertEquals(array(9012 => 'Don Juan'), $coll->toKeyValue('Id', 'Title'));
     // This will call: $book->getAuthor()->getBooks()->getFirst()->getId()
     $this->assertEquals(array(9012 => 'Don Juan'), $coll->toKeyValue(array('Author', 'Books', 'First', 'Id'), 'Title'));
 }
开发者ID:renepardon,项目名称:Propel,代码行数:21,代码来源:PropelObjectCollectionTest.php


注:本文中的Book::setId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。