本文整理匯總了PHP中Library::get_shelves_tableview方法的典型用法代碼示例。如果您正苦於以下問題:PHP Library::get_shelves_tableview方法的具體用法?PHP Library::get_shelves_tableview怎麽用?PHP Library::get_shelves_tableview使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Library
的用法示例。
在下文中一共展示了Library::get_shelves_tableview方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Student
<?php
session_start();
include 'student.php';
$student = new Student($_SESSION['username']);
$op = $_GET['op'];
if ($op == "return") {
$student->return_book($_GET['copyId']);
} else {
if ($op == "borrow") {
$lib = new Library();
$copyId = $lib->get_copyID_from_title($_GET['title']);
if (is_null($copyId)) {
exit("Found None");
}
$lib->borrowBook($_SESSION['username'], $copyId);
echo "The book is borrowed";
} else {
if ($op == "shelves") {
$lib = new Library();
$html = $lib->get_shelves_tableview('student');
echo $html;
} else {
if ($op == "details") {
}
}
}
}
示例2: Library
<?php
session_start();
include 'library.php';
$op = $_GET['op'];
$lib = new Library();
if ($op == "add") {
$lib->addBook($_GET['title'], $_GET['author']);
} else {
if ($op == "add_existing") {
$lib->addBook_existing($_GET['id']);
} else {
if ($op == "delete") {
$book = new Book($_GET['copyId'], 'copy');
$book->delete();
} else {
if ($op == "shelves") {
$lib = new Library();
$html = $lib->get_shelves_tableview('librarian');
echo $html;
}
}
}
}