0

我是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

如何以最简单的方式完成这项工作?

4

1 回答 1

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>

记住:

  1. PHP 中的变量名总是以$
  2. PHP 代码需要在<?phpand?>标记之间(或者<?如果?>您的服务器配置为接受短标记)
  3. HTML中没有<header>标签。也许你在想<head>。无论如何,include声明不一定需要在那里
于 2012-04-07T10:21:08.853 回答