PHP中不同页面的Echo变量

时间:2014-09-28 13:44:29

标签: php

在PHP中如何更改不同页面的变量。

例如:

的header.php

// For style-specific pages.
echo $header_styles;

然后在像index.php这样的页面中:

include('header.php');
echo $header_styles = "<style></style>";

我曾经知道如何做到这一点,但我完全忘记了。

1 个答案:

答案 0 :(得分:1)

你需要先做到这一点:

在header.php中,您将拥有:

<?php
echo $header_styles;
?>

然后在您需要包含标题的页面中,例如index.php,您将拥有:

<?php
    $header_styles = "<style></style>";
    include('header.php');
?>
<html>
   Your html code here
</html>

您需要将名称从index.html更改为index.php。然后你需要在调用header.php之前设置变量,然后你将对它进行“回声”。 在设置值时不要应用回声,因为我认为您不想打印只需要设置值。