本文整理匯總了PHP中Index::getBanner1方法的典型用法代碼示例。如果您正苦於以下問題:PHP Index::getBanner1方法的具體用法?PHP Index::getBanner1怎麽用?PHP Index::getBanner1使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Index
的用法示例。
在下文中一共展示了Index::getBanner1方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Index
function Index()
{
//print_r($_SESSION);
//print_r($_COOKIE);
/**
* session cookie tourists
*
* 1.判斷是登陸,服務器是否保留session
* 2.如果沒有session可取,判斷是否本地保存cookie
* 3.如果session cookie 都沒有值可取采用遊客登錄
*
*/
if (isset($_SESSION['username']) && !empty($_SESSION['username'])) {
//檢測session
$this->assign('username', $_SESSION['username']);
} else {
if (!empty($_COOKIE["username"])) {
//檢測cookie
$userCookie = $_COOKIE["username"];
$this->assign('username', $userCookie);
} else {
//遊客登陸
$tourists_id = Login::getTouristsId();
if ($tourists_id == null) {
Login::setTouristsId();
}
}
}
/**
* 獲取頂部banner1數據
*
*/
$index = new Index();
$banner1 = $index->getBanner1();
if ($banner1) {
$this->assign('banner1', $banner1);
}
/**
* 獲取banner2數據
*
*/
$banner2 = $index->getBanner2();
if ($banner2) {
$this->assign('banner2', $banner2);
}
/**
* 獲取website數據
*
*/
$websites = $index->getWebsites();
if ($websites) {
$this->assign('websites', $websites);
}
}
示例2: productlist
/**
* productlist基本數據讀取
* @access public
*/
function productlist()
{
/**
* 獲取頂部banner1數據
*
*/
$index = new Index();
$banner1 = $index->getBanner1();
if ($banner1) {
$this->assign('banner1', $banner1);
}
// $Productlist = new Productlists();
// //獲取目錄
// $categoryProductlist = $Productlist->getCategoryProductlist();
// if($categoryProductlist){
// //print_r($categoryProductlist);
// $this->assign('categoryProductlist', $categoryProductlist);
// }
//獲得關鍵詞
// $KEY = get_post_value('key');
// $VALUE = get_post_value('value');
// $order = get_post_value('order');
//echo $KEY."=>".$VALUE;
/**
* 獲得產品列表
*
* i.獲得一級目錄
*
* 顯示一級目錄推薦
*
* ii.獲得二級目錄
*
* 顯示二級目錄推薦
*
* iii 獲得三級目錄
*
* 顯示三級目錄產品信息
*/
// $productlist = $Productlist->getProductlist();
// if($productlist){
// //print_r($productlist);
// $this->assign('KEY', $KEY);
// $this->assign('VALUE', $VALUE);
// $this->assign('productlist', $productlist);
// }
}