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


PHP Products::GetList方法代碼示例

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


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

示例1: Products

                            <div align="right">
                                <span></span>聯係電話:</div>
                        </td>
                        <td width="482">
                             <input type="text" name="mobile" id="mobile" size="30" />
                        </td>
                    </tr>
                    <tr>
                		<td width="136">
                			<div align="right">
                                <span></span>產品:</div>
                		</td>
                		<td width="482">
                			<?php 
$product = new Products();
$product_data = $product->GetList(array('id', 'title', 'price'), '', '', '', 'addtime desc');
?>

							<select name="product_id" style="margin-left:2px ; padding:2px ; height:25px ; width:300px ;">

							<?php 
if ($product_data) {
    foreach ($product_data as $product_key => $product_value) {
        ?>
						  		<option value="<?php 
        echo $product_value['id'];
        ?>
">
						  			<?php 
        echo $product_value['title'] . " " . $product_value['price'] . "元";
        ?>
開發者ID:zrwlc2008,項目名稱:abhx,代碼行數:31,代碼來源:books_add.tpl.php

示例2: array

         $info = array();
         $time = time();
         if (isset($id)) {
             $id = intval($id);
             if ($id <= 0) {
                 errorinfo('變量錯誤', '');
             }
             $info = $products_photo->GetInfo('', ' id = ' . $id);
             if (empty($info)) {
                 errorinfo('變量錯誤', '');
             }
             $productinfo = $products->GetInfo('', ' id = ' . $info['productid']);
             //20120719
             checkClassPower('products', $productinfo['classid']);
         }
         $classList = $products->GetList();
         //$classList = $CL->arraySet($classList,0);
         if (is_file(WEB_TPL . 'products_photo_edit.tpl.php')) {
             $templatefile = 'products_photo_edit.tpl.php';
         } else {
             $tpl_in_module = 1;
             $templatefile = $moduleRoot . WEB_APP . 'templates/' . 'products_photo_edit.tpl.php';
         }
     }
     break;
 case 'search':
     //
     break;
 case 'show':
     //
     break;
開發者ID:zrwlc2008,項目名稱:abhx,代碼行數:31,代碼來源:products_photo.php

示例3: isset

 }
 if (isset($filename) && !empty($filename)) {
     $where = $where . " and `classid` = '" . $info['id'] . "' ";
 }
 $pageListNum = 9;
 //每頁顯示
 //20120715
 if (intval($info['listnum']) > 0) {
     $pageListNum = $info['listnum'];
 }
 $totalPage = 0;
 //總頁數
 $page = isset($page) ? (int) $page : 1;
 $start = ($page - 1) * $pageListNum;
 //執行sql
 $List = $products->GetList(array('id', 'classid', 'title', 'filename', 'addtime', 'thumb', 'intro', 'titlecolor', 'author', 'clicks', 'istop'), $start, $pageListNum, $where, 'istop desc,addtime desc,id desc');
 //*******************************************查詢產品信息 END ******************************************************
 include WEB_INC . "page.class.php";
 //******************************************* 查詢產品信息長度,設置分頁 ******************************************************
 $sqlNum = "select id from {tablepre}products where " . $where;
 $db->Execute($sqlNum);
 $pageNum = $db->GetRsNum();
 $totalPage = ceil($pageNum / $pageListNum);
 //總頁數
 $pages = new PageClass($page, $totalPage);
 $showpage = $pages->showPage();
 //******************************************* 查詢產品信息長度,設置分頁 END ******************************************************
 if (is_file(WEB_TPL . 'products_list.tpl.php')) {
     $templatefile = 'products_list.tpl.php';
 } else {
     $tpl_in_module = 1;
開發者ID:zrwlc2008,項目名稱:abhx,代碼行數:31,代碼來源:products.php


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