从另一个文件获取变量

时间:2011-03-01 21:03:21

标签: php variables include

如何将变量从一个文件传递到另一个文件,但只传递变量,而不是文件的输出(内容)。 ob_start对我不起作用,还有其他什么?

1 个答案:

答案 0 :(得分:4)

要传递变量,您需要包含文件

file1.php

<?php

$variable = "hello world";

?>

file2.php

<?php 
include ('file1.php')

echo $variable;
// hello world.

?>

这就是将变量从一个文件传递到另一个文件的方法