Home > php教程 > php手册 > body text

【转】创造世界上最简单的 PHP 开发模式

WBOY
Release: 2016-06-06 20:00:08
Original
924 people have browsed it

五、制作功能接口(2) 下面来正式的看看,我们共要实现的功能进行的包装 ------------ArticleUtil.php---------------- ?php//显示文章列表的函数//getArticleList(文章类别, 排序方法, 当前显示第几页, 每页显示几条)function getArticleList($catId, $ord

  五、制作功能接口(2)

  下面来正式的看看,我们共要实现的功能进行的包装

  ------------ArticleUtil.php----------------

  这段代码是不是就简单多了啊?这就是自己对mysql函数进行包装的好处!

  下面来研究一下他们是怎么实现我们的功能的呢。

  “php开发文章列表”--------getArticleList(1, "id DESC", $page, 5)

  “asp开发文章列表”--------getArticleList(2, "id DESC", $page, 5)

  “php开发热点文章列表”----getArticleList(1, "clicks DESC, id DESC", 1, 3)

 

  “asp开发热点文章列表”----getArticleList(2, "clicks DESC, id DESC", 1, 3)

  “asp开发最新文章”--------getArticleList(2, "id DESC", 1, 3)

  “添加新文章”-------------addArticle($data)

  “察看文章”---------------getArticle($id)

  六、对smarttemplate类进行包装(革命尚未成功,同志仍须努力)

  具体的smarttemplate的使用这里就不讲了,不然口水讲没了,都讲不完。下面这个是具体的对包装函数

  -------------ParseTpl.php----------------

<span><textarea>  <?php function renderTpl($viewFile, $data){    $page = new SmartTemplate($viewFile);    foreach($data as $key=>$value){      if(isset($value[data])){        $page->assign($key, $value[data]);        unset($value[data]);        $page->assign($key."_page", $value);      } else {        $page->assign($key, $value);      }    }    $page->output(); } ?> </textarea> </span>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!