當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Book::getAuthorId方法代碼示例

本文整理匯總了PHP中Book::getAuthorId方法的典型用法代碼示例。如果您正苦於以下問題:PHP Book::getAuthorId方法的具體用法?PHP Book::getAuthorId怎麽用?PHP Book::getAuthorId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Book的用法示例。


在下文中一共展示了Book::getAuthorId方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: filterByBook

 /**
  * Filter the query by a related Book object
  *
  * @param   Book|PropelObjectCollection $book  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return                 AuthorQuery The current query, for fluid interface
  * @throws PropelException - if the provided filter is invalid.
  */
 public function filterByBook($book, $comparison = null)
 {
     if ($book instanceof Book) {
         return $this->addUsingAlias(AuthorPeer::ID, $book->getAuthorId(), $comparison);
     } elseif ($book instanceof PropelObjectCollection) {
         return $this->useBookQuery()->filterByPrimaryKeys($book->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByBook() only accepts arguments of type Book or PropelCollection');
     }
 }
開發者ID:kalaspuffar,項目名稱:php-orm-benchmark,代碼行數:19,代碼來源:BaseAuthorQuery.php

示例2: testSetAndGetObject

 public function testSetAndGetObject()
 {
     // case 1: author object to be set is anonymous, book is saved
     $joyce = new Author();
     $joyce->setName('James Joyce');
     $joyce->setCreationDatetime(date('Y-m-d H:i:s'));
     $ulysses = new Book();
     $ulysses->setTitle('Ulysses');
     $ulysses->setIntroduction('1264 pages of bs by one of the masters.');
     $ulysses->setCreationDatetime(date('Y-m-d H:i:s'));
     $ulysses->save();
     $ulysses->setAuthor_Object($joyce);
     $this->assertReference($ulysses->getAuthor_Object(), $joyce);
     $ulysses->save();
     // $this->assertNotEqual($ulysses->getAuthorId(), $joyce->getAuthorId());
     // case 2: author object saved, book is saved
     $twain = new Author();
     $twain->setName('Mark Twain');
     $twain->setCreationDatetime(date('Y-m-d H:i:s'));
     $twain->save();
     $huckFinn = new Book();
     $huckFinn->setTitle('Huckleberry Finn');
     $huckFinn->setIntroduction('meh.');
     $huckFinn->setCreationDatetime(date('Y-m-d H:i:s'));
     $huckFinn->save();
     $huckFinn->setAuthor_Object($twain);
     $this->assertReference($huckFinn->getAuthor_Object(), $twain);
     $huckFinn->save();
     $this->assertNotEqual($huckFinn->getAuthorId(), $twain->getAuthorId());
     // case 3: author object is anonymous, book is anonymous
     $murakami = new Author();
     $murakami->setName('Haruki Murakami');
     $murakami->setCreationDatetime(date('Y-m-d H:i:s'));
     $windup = new Book();
     $windup->setTitle('The Wind Up Bird Chronicles');
     $windup->setIntroduction('trippy.');
     $windup->setCreationDatetime(date('Y-m-d H:i:s'));
     $windup->setAuthor_Object($murakami);
     $this->assertReference($windup->getAuthor_Object(), $murakami);
     $windup->save();
     // $this->assertNotEqual($windup->getAuthorId(), $murakami->getAuthorId());
     // case 4: author object is saved, book is anonymous
     $heinlein = new Author();
     $heinlein->setName('Robert A. Heinlein');
     $heinlein->setCreationDatetime(date('Y-m-d H:i:s'));
     $heinlein->save();
     $stranger = new Book();
     $stranger->setTitle('Stranger in a Strange Land');
     $stranger->setIntroduction('awesome');
     $stranger->setCreationDatetime(date('Y-m-d H:i:s'));
     $stranger->setAuthor_Object($heinlein);
     $this->assertReference($stranger->getAuthor_Object(), $heinlein);
     $stranger->save();
     $this->assertNotEqual($stranger->getAuthorId(), $heinlein->getAuthorId());
 }
開發者ID:jmhobbs,項目名稱:MkLst,代碼行數:55,代碼來源:TestCoughObject.class.php

示例3: filterByBook

 /**
  * Filter the query by a related Book object
  *
  * @param     Book $book  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    AuthorQuery The current query, for fluid interface
  */
 public function filterByBook($book, $comparison = null)
 {
     return $this->addUsingAlias(AuthorPeer::ID, $book->getAuthorId(), $comparison);
 }
開發者ID:dracony,項目名稱:forked-php-orm-benchmark,代碼行數:12,代碼來源:BaseAuthorQuery.php


注:本文中的Book::getAuthorId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。