我刚刚在php中了解了include()
函数,它可以将整个文档包含到另一个文档中。我想知道如何做同样的事情,如果我想不包括整个文档,而只是包含一段代码,从一个文档到另一个文档。
答案 0 :(得分:0)
你可以用2种方法做到:
Exmple:
// helper.php - 包含您的剪辑/可重用代码
<?php
function startPage($title){
print '
<!DOCTYPE html>
<html>
<head>
<title>'.$title.'</title>
</head>
<body>';
}
function endPage(){
print '
</body>
</html>';'
}
?>
现在你的主文件包含helper.php并调用你想要的方法。 // main.php
<?php
include("helper.php");
startPage("My Title");
// do your stuff/coding here
endPage();
?>
希望它有所帮助。