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


PHP Book::addCopies方法代碼示例

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


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

示例1: Book

 function test_addCopy()
 {
     $title = "Three Blind Mice";
     $test_book = new Book($title);
     $test_book->save();
     $test_copy = new Copy($amount = 1, $test_book->getId());
     $test_copy->save();
     $title2 = "Chicken Dog";
     $test_book2 = new Book($title2);
     $test_book2->save();
     $test_book->addCopies(1);
     $result = $test_copy->getAmount();
     $this->assertEquals(2, $result);
 }
開發者ID:juliocesardiaz,項目名稱:Library,代碼行數:14,代碼來源:BookTest.php

示例2: function

});
//add new book with author
$app->post("/book_added", function () use($app) {
    // create new book from user entry "add book"
    $title = $_POST['title'];
    $new_book = new Book($title);
    $new_book->save();
    // create new author from user entry "add book"
    // possibly check that the author is already in the database - NOT NOW
    $name_array = explode(',', $_POST['name']);
    foreach ($name_array as $name) {
        $new_author = new Author($name);
        $new_author->save();
        $new_book->addAuthor($new_author);
    }
    $new_book->addCopies($_POST['copies']);
    $books = Book::getAll();
    $authors = Author::getAll();
    return $app['twig']->render("main_admin.html.twig", array('books' => $books, 'authors' => $authors));
});
//INDIVIDUAL BOOK PAGE - DISPLAYS BOOK INFORMATION
$app->get("/book/{id}", function ($id) use($app) {
    $book = Book::find($id);
    $book_authors = $book->getAuthors();
    return $app['twig']->render("book.html.twig", array('book' => $book, 'authors' => $book_authors, 'copies' => count($book->getCopies())));
});
//ADD AUTHOR TO INDIVIDUAL BOOK PAGE
$app->post("/book/{id}/add_author", function ($id) use($app) {
    $find_book = Book::find($id);
    $name = $_POST['name'];
    $new_author = new Author($name);
開發者ID:kevintokheim,項目名稱:Library,代碼行數:31,代碼來源:app.php

示例3: Book

 function test_getCopies()
 {
     //Arrange
     $book_name = "The Martian";
     $test_book = new Book($book_name);
     $test_book->save();
     //Act
     $test_book->addCopies(4);
     $test_copies = $test_book->getCopies();
     $result = Copy::getAll();
     //Assert
     $this->assertEquals($test_copies, $result);
 }
開發者ID:kevintokheim,項目名稱:Library,代碼行數:13,代碼來源:BookTest.php

示例4: Book

 function test_getCopyIds()
 {
     //Arrange
     $title = "dog book";
     $test_book = new Book($title);
     $test_book->save();
     //Act
     //starts with 1 copy, add 10 more
     $test_book->addCopies(10);
     //Assert
     $result = $test_book->getCopyIds();
     $this->assertEquals(11, sizeof($result));
 }
開發者ID:r-hills,項目名稱:Library,代碼行數:13,代碼來源:BookTest.php

示例5: Book

 function test_getBook()
 {
     //Arrange
     $title = "Space Invaders";
     $new_book = new Book($title);
     $new_book->save();
     //Act
     $new_book->addCopies(4);
     $result = $new_book->getCopies();
     $this->assertEquals($new_book, $result[0]->getBook());
 }
開發者ID:kevintokheim,項目名稱:Library,代碼行數:11,代碼來源:CopyTest.php

示例6: testAddCopies

 function testAddCopies()
 {
     $title = "Carrie";
     $test_book = new Book($title);
     $test_book->save();
     $test_book->addCopies(5);
     $result = $test_book->getAllCopies();
     $this->assertEquals(5, $result);
 }
開發者ID:umamiMike,項目名稱:library-1,代碼行數:9,代碼來源:BookTest.php

示例7: Book

 function test_getCopies()
 {
     //Arrange
     $title = "Gardening with Phil";
     $genre = "Informational/How-To";
     $test_book = new Book($title, $genre);
     $test_book->save();
     $test_book->addCopies(2);
     //Act
     $result = $test_book->getCopies();
     //Assert
     $this->assertEquals([$test_book, $test_book, $test_book], $result);
 }
開發者ID:r-hills,項目名稱:library-1,代碼行數:13,代碼來源:BookTest.php


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