我想用 PHP 使用 require 来做我的 HTML 标记,这可能吗?如果可以,你是怎么做的?
现在这是我的 index.php 中的代码:
<?php
require('header.php')
require('body.php')
htmlHead();
htmlContent();
?>
然后在我的 header.php 文件中,我得到了这个:
<?php
function htmlHead(){
echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Hello World</title>
<link rel="stylesheet" href="/style.css" type="text/css">
</head>';
}
?>
然后是我的身体标签:
<?php
function htmlContent(){
echo' <body>
<div id="wrapper">
<p>Hello World!</p>
</div>
</body>
</html>
';
}
?>
提前致谢!