包括php / html代码或使用函数代替?

时间:2017-03-22 18:32:38

标签: php html function include

我想弄清楚哪些是在某些页面上包含一些html / php代码的最佳方法。例如页眉/页脚和其他重复的部分。

我应该include_once(php文件)(可能在一个页面中多次使用)还是使用函数从那里获取代码?

哪种方法最好?

1 个答案:

答案 0 :(得分:0)

使用以下功能:要求'file.php' require_once'file.php'包含'file.php',< strong> include_once'file.php'直接在你的代码html或php ....使用示例:

<html>
<body>

<div class="menu">
<?php include 'menu.php';?>
</div>

<h1>Welcome to my home page!</h1>
<p>Some text.</p>
<p>Some more text.</p>

</body>
</html>
  

当应用程序需要该文件时使用require。

     

在不需要文件和应用程序时使用include   找不到文件时继续。

     

使用_once仅加载文件ONCE