如果这些变量来自 extract(),如何为包含的文件传递变量。
编码
<?php
$hello = 'hello';
include('world.php');
?>
<?php //world.php
echo $hello;
?>
奇迹般有效
但是,万一呢?
<?php
$arr = array('hello' => 'hello');
extract($arr);
echo $hello //it will print : hello
include('world.php');
?>
<?php //world.php
echo $hello; //it will print an error: Notice: Undefined variable: hello
?>
那么,如何将“提取的”变量传递给包含的文件?