PHP簡易MVC(仿C#MVC)解決辦法

來源:互聯網
上載者:User
PHP簡易MVC(仿C#MVC)
Controllers:HomeController.php、ShopController.php ....
Views:Home/index、Home/list ....

訪問路徑:
http://127.0.0.1/index.php/home/index
http://127.0.0.1/index.php/home/list
http://127.0.0.1/index.php/shop/index
.....

HomeController.php

/* 商城控制器 */

class HomeController extends BaseController
{
//風向標
public function biao(){
$this->cacheView(); //優先從緩衝輸出,可選資料庫緩衝/磁碟緩衝靜態頁面

$site=$this->dal('site'); //調用資料庫層

//分類
$cats=$site->getMyCats('風向標');

//列表
foreach($cats as &$cat){
$cat['list']=$site->getMyProductTop("where cid=".$cat['id'],5);
}

$this->viewData['cats']=$cats; //給視圖模板賦值變數
$this->view(); //顯示視圖
}

}
?>

模板文法(smarty):

您正在查看{{$cat.name}}熱銷商品



    {{section name=a loop=$list}}
    {{assign var='product' value=$list[a]}}





  • {{$product.title|strip_tags|truncate_cn:20}}

    ¥{{$product.price}}

  • {{/section}}



參考案例:
淘到:http://www.taodao100.com



------解決方案--------------------
你的不是pdo嗎,怎麼指定mssql

應該使用pdo做基類


我新發了一篇文章
---------------------------------------------
http://topic.csdn.net/u/20100310/11/62a60067-b3da-4dee-9d6a-f1baeb2f3f33.html
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.