函数怎么样封装呢?

WBOY
Release: 2016-06-20 12:38:12
Original
1007 people have browsed it

这里有一个分页效果   怎样把这个代码封装成函数呢  以后别的地方用到时拿来就用 可是我不会封装函数呢 下面这个代码可以封装吗




  • /页|

  •    if($page==1){
                 echo '
  • 首页|
  • ';
                 echo '
  • 上一页
  • ';
       }else{
         echo '
  • 首页|
  • ';
                 echo '
  • 上一页|
  • ';
       }
       if($page==$pagenum){
        echo '
  • 下一页
  • ';
        echo '
  • 尾页
  • ';
       }else{
        echo '
  • 下一页
  • ';
        echo '
  • 尾页
  • ';
       }

     ?>




              echo '
  • '.($i+1).'
  • ';   //每个页数
         } ?>




回复讨论(解决方案)

调用一个函数直接显示整个分页的

里的内容?
定义一个函数,把这些扔在里面就好了。

html与php混排的封装在一起?
给一个你参考:
http://www.jb51.net/article/25496.htm

Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template