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


PHP Place::getListPlace方法代碼示例

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


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

示例1: Tinh

$link = "index.php?mod=place&act=list";
require_once "model/Tinh.php";
$modelTinh = new Tinh();
if (isset($_GET['nhaxe_id']) && $_GET['nhaxe_id'] > 0) {
    $nhaxe_id = (int) $_GET['nhaxe_id'];
    $link .= "&nhaxe_id={$nhaxe_id}";
} else {
    $nhaxe_id = -1;
}
if (isset($_GET['keyword']) && trim($_GET['keyword']) != '') {
    $keyword = $_GET['keyword'];
    $link .= "&keyword={$keyword}";
} else {
    $keyword = '';
}
$arrTotal = $model->getListPlace($nhaxe_id, $keyword, -1, -1);
$total_page = ceil($arrTotal['total'] / LIMIT);
$page = isset($_GET['page']) ? (int) $_GET['page'] : 1;
$offset = LIMIT * ($page - 1);
$arrList = $model->getListPlace($nhaxe_id, $keyword, $offset, LIMIT);
// list nha xe
require_once "model/Nhaxe.php";
$modelNhaxe = new Nhaxe();
$arrListNhaxe = $modelNhaxe->getListNhaxe('', -1, -1, -1);
?>



<div class="row">

開發者ID:hoangnhonline,項目名稱:bds-sth,代碼行數:29,代碼來源:list.php

示例2: array

$page_show = 20;
/* get ds nha xe */
$arrNhaxe = $modelNhaxe->getListNhaxe('', -1, -1, -1);
/* end get ds nha xe */
/* get ds noi di */
$arrListTinhKey = array();
$arrListTinh = $modelTinh->getListTinh(-1, '', -1, -1, -1);
if (!empty($arrListTinh)) {
    foreach ($arrListTinh['data'] as $value) {
        $arrListTinhKey[$value['tinh_id']] = $value;
    }
}
/* end get ds place */
/* get ds place */
$arrListPlaceKey = array();
$arrListPlace = $modelPlace->getListPlace(-1, '', -1, -1);
if (!empty($arrListPlace)) {
    foreach ($arrListPlace['data'] as $value) {
        $arrListPlaceKey[$value['place_id']] = $value;
    }
}
/* end get ds place */
if (isset($_GET['nhaxe_id']) && $_GET['nhaxe_id'] > 0) {
    $nhaxe_id = (int) $_GET['nhaxe_id'];
    $link .= "&nhaxe_id={$nhaxe_id}";
} else {
    $nhaxe_id = -1;
}
if (isset($_GET['ngaydi']) && trim($_GET['ngaydi']) != '') {
    $ngaydi = strtotime($_GET['ngaydi']);
    $link .= "&ngaydi=" . $_GET['ngaydi'];
開發者ID:hoangnhonline,項目名稱:phong-tro-sg,代碼行數:31,代碼來源:listshort.php


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