-2

我想用 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>
';
}
?>

提前致谢!

4

1 回答 1

5

您无需将 HTML 放入函数中。您可以简单地执行以下操作:

require('my_header.php');

my_header.php的内容如下所示:

<html>
<head>
  <title>My Title</title>
  <link rel="stylesheet" href="<?php $someVariable; ?>" type="text/css" />
  ...
</head>

十分简单。

于 2013-01-10T15:23:25.833 回答