Home  >  Article  >  php教程  >  php中使用函数代替require操作

php中使用函数代替require操作

WBOY
WBOYOriginal
2016-06-13 11:33:10835browse

 为了减少重复代码,常常需要包含 heade 和 footer,我们最长使用的操作就是,require 或者 reqire_once等代码,但是我们可以用另一种方式来实现这种包含,写一个函数,比如 printHeader ,如下所示,看起来似乎一行代码变成两行更麻烦了,但是却可以实现一些额外的效果,比如我们希望每个页面有不同的 title,就可以给这个函数传参数(如下所示)。

function printHeader($title)
{
    require("../lib/header.php");
}

同时在 header.php 中


    
        <title>= $title ?></title>
...
Statement:
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