我用例子来描述我的问题:
-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 中看到
但现在我想在 [MY QUESTION] 中为 echo 添加一个变量,该变量需要 funcfile2.php 包括
和 funcfile2 只包含在 index.php
我能做些什么?