我怎么能包含2个php文件变量?

时间:2013-08-02 13:17:25

标签: php

我用例子描述了我的问题:

-index.php文件内容:

<?php
require_once(funcfile1.php);
include(funcfile2.php);
?>
<div><?php echo $var1; ?></div>

-funcfile1.php内容:

<?php
$var1 = 'html codes'.$var2.'htmlcodes'.**[MY QUESTION]**.'other html or php cods'
?>

你在funfile1.php中的索引文件echo $ var1中看到

但现在我想在[我的问题]中为echo添加一个变量,该变量需要funcfile2.php包含

和funcfile2只包含在index.php

我能做什么?

1 个答案:

答案 0 :(得分:2)

funfile2.php 添加到 funfile1.php 中。 当您在index.php中包含 funfile1.php 时, funfile2.php 文件也将包含在index.php文件中。

-funcfile1.php内容:

<?php
include(funcfile2.php);
$var1 = 'html codes'.$var2.'htmlcodes'.**[MY QUESTION]**.'other html or php cods'
?>

index.php的内容将是:

<?php
require_once(funcfile1.php); 
// remove include funcfile1.php from here as it was includeed in funcfile1.php
?>