我是php的新手,很抱歉我的简单问题。需要一步一步了解。
示例:index.php
<html>
<header>
-including a file (/lang.php for example)
</header>
<body>
<div>
<a href="aboutus.php"> - word1 - </a> | <a href="contact.php"> - word2 - </a>
</div>
</body>
</html>
示例:lang.php
word1 = ABOUT US
word2 = CONTACT
如何以最简单的方式完成这项工作?
答案 0 :(得分:2)
lang.php将类似于:
<?php
$word1 = "About us";
$word2 = "Contact";
?>
在你的其他文件中你将有
<?php
include "lang.php";
?>
<div>
<a href="aboutus.php"> - <?php echo $word1; ?> - </a> |
<a href="contact.php"> - <?php echo $word2; ?> - </a>
</div>
记住:
$
<?php
和?>
标记之间(或<?
和?>
<header>
标记。也许你在想<head>
。无论如何,include
语句不一定需要在那里