如何将变量从一个文件传递到另一个文件,但只传递变量,而不是文件的输出(内容)。 ob_start
对我不起作用,还有其他什么?
答案 0 :(得分:4)
要传递变量,您需要包含文件
file1.php
<?php
$variable = "hello world";
?>
file2.php
<?php
include ('file1.php')
echo $variable;
// hello world.
?>
这就是将变量从一个文件传递到另一个文件的方法