本文整理匯總了PHP中think\Page::ashow方法的典型用法代碼示例。如果您正苦於以下問題:PHP Page::ashow方法的具體用法?PHP Page::ashow怎麽用?PHP Page::ashow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類think\Page
的用法示例。
在下文中一共展示了Page::ashow方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: wx_list
public function wx_list()
{
//刪除操作
if (IS_POST) {
if (!empty($_POST['id'])) {
$bucket = C('OT_BUCKET');
$Oss = new OssApi();
if (!empty($_POST['id']) && is_array($_POST['id'])) {
foreach ($_POST['id'] as $wx_id) {
$del_info = $this->_mod->where('wx_id=' . $wx_id)->field('wx_img')->find();
$wx_img = $del_info['wx_img'];
if ($wx_img != '') {
$Oss->deleteObject($bucket, $wx_img);
}
$this->_mod->where('wx_id=' . $wx_id)->delete();
}
$this->success('信息刪除成功', U('Weixin/wx_list'));
exit;
}
} else {
$this->error('請選擇要刪除的信息!');
exit;
}
}
$map = array();
if (intval($_GET['wx_status']) > 0) {
if (intval($_GET['wx_status']) == 10) {
$map['wx_status'] = array('eq', 0);
} else {
$map['wx_status'] = array('eq', 1);
}
}
if (trim($_GET['wx_title'])) {
$map['wx_title'] = array('like', '%' . trim($_GET['wx_title']) . '%');
}
if (intval($_GET['wx_cate_id'])) {
$map['wx_cate_id'] = array('eq', intval($_GET['wx_cate_id']));
}
$count = $this->_mod->where($map)->count();
$page = new \Think\Page($count, 10);
$limit = $page->firstRow . ',' . $page->listRows;
$list = $this->_mod->where($map)->order('wx_sorts desc')->limit($limit)->select();
$this->assign('list', $list);
$this->assign('pages', $page->ashow());
$this->assign('search', $_GET);
$this->display();
}