本文整理匯總了PHP中MyDB::searchBooksByTitle方法的典型用法代碼示例。如果您正苦於以下問題:PHP MyDB::searchBooksByTitle方法的具體用法?PHP MyDB::searchBooksByTitle怎麽用?PHP MyDB::searchBooksByTitle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MyDB
的用法示例。
在下文中一共展示了MyDB::searchBooksByTitle方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: showBooks
}
if (!isset($terms) || empty($terms)) {
if (!isset($_GET['author'])) {
exit;
}
$author = $_GET['author'];
if (mb_check_encoding($author, $default_encoding) && !mb_check_encoding($author, 'UTF-8')) {
$author = mb_convert_encoding($author, 'UTF-8', $default_encoding);
}
if (!empty($author)) {
$books = $db->searchBooksByAuthor($author);
showBooks($opds, $books, $page, "Search results: " . $author);
exit;
}
} else {
$books = $db->searchBooksByTitle($terms);
showBooks($opds, $books, $page, "Search results: " . $terms);
exit;
}
} elseif ($count > 1) {
$lvl_parent = $levels[$count - 2];
if ($lvl_parent === 'genres') {
$books = $db->getBooksByGenre($lvl_last);
showBooks($opds, $books, $page, "Genre: " . $lvl_last);
}
if ($lvl_parent === 'authors') {
$books = $db->getBooksByAuthor($lvl_last);
showBooks($opds, $books, $page, "Author: " . $lvl_last);
}
}
} else {