smarty+adodb+部分自訂類的php開發模式

來源:互聯網
上載者:User

前幾天把熱網的後台基本弄好,騰出時間對工作總結了一下。
在設計模式上,我嘗試著使用mvc模式的開發。用smarty控制顯示,用case語句控制各種action,然後寫好各種模組的class給action調用。這樣做的確對代碼的控制強了一點,比如在class.message.php中寫上getAllMsg()函數,那麼這個函數就可以被許多action調用。再配上分頁類。在對資料的處理上還算靈活。 複製代碼 代碼如下:$db=new Db;
$sql="select * from com_info,hr_info where hr_info.ci_id=com_info.id and {$cate} like '%{$content}%'";
$totalArr=$db->execute($sql);
$url="hr.php?op=searchHrInfoAction&cate={$cate}&content=".urlencode($content);
$totalItems=count($totalArr);
$currentPageNumber=(isset($_GET['page']))?$_GET['page']:1;
$pageNav=new PageNumber($currentPageNumber,$totalItems,3,3,$url);
$currentPageRs=$pageNav->getRsPerPage(&$totalArr);
$pageNavigation=$pageNav->getPageNumber();
$smarty->assign("pageNavigation",$pageNavigation);
$smarty->assign("hr",$currentPageRs);
$smarty->display("hr_get.htm");

而且這種方式對協同開發很有協助,代碼重複率也不是很高。
但是如上代碼所示,在構造各種模組的class之外,因為各種個人化查詢的存在,不可避免會在control中直接使用db類(當然,這些處理也可以放在寫成類放在class中,但有點顯得 臃腫和做作)。
但是光就方便而言,如果一段代碼或者一個功能不被其他地方調用,完全可以把mc放在一起,保v單獨就可以了,這需要對軟體認真分析。下班了,回家樓。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.