如何从单独的文件中添加元标记

时间:2014-04-15 11:20:31

标签: php html include meta

如何从其他文件添加元标记? 如果我想要包含带有" include_once"功能的标签。它将元标记包含在正文内容中。

感谢您的回复!

1 个答案:

答案 0 :(得分:0)

你应该这样做。

<强> meta.php

<meta charset="utf-8">

<强>的index.php

<!doctype html>
<html>
    <head>
        <?php include_once ('meta.php');?>
    </head>
    <body>

    </body>
</html>