本文整理汇总了PHP中Books::getBooks方法的典型用法代码示例。如果您正苦于以下问题:PHP Books::getBooks方法的具体用法?PHP Books::getBooks怎么用?PHP Books::getBooks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Books
的用法示例。
在下文中一共展示了Books::getBooks方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getBooks
public function getBooks($params)
{
if (!is_array($params)) {
return array('result' => 'fail', 'message' => 'Некорректные параметры запроса getBooks');
}
$name = isset($params['name']) ? $params['name'] : '';
$author = isset($params['author']) ? $params['author'] : '';
return Books::getBooks($name, $author);
}
示例2: unset
} else {
?>
<div class="panel panel-default">
<div class="panel-heading">Lista Carti
<p style="margin-top: 15px">
<a class="btn btn-primary btn-sm" href="books.php?action=add"><i class="fa fa-plus" style="padding-right: 15px"></i>Adauga Carti</a>
</p>
</div>
<div class="panel-body">
<?php
if (isset($_SESSION['succes'])) {
echo "\n <div class=\"alert alert-success\">\n <button type=\"button\" class=\"close\" data-dismiss=\"alert\">\n <span aria-hidden=\"true\">×</span>\n <span class=\"sr-only\">Close</span>\n </button>\n \n {$_SESSION['succes']}\n </div>";
unset($_SESSION['succes']);
}
$book = new Books();
$books = $book->getBooks();
if (count($books) > 0) {
?>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Nume</th>
<th>Caetgorie</th>
<th>Autor</th>
<th>Imagine</th>
<th>Pret</th>
<th>Optiuni</th>
</tr>
</thead>
<?php