如何制作包含所有环境变量的config.php文件并将其成功导入其他脚本?
的config.php:
<?php
$folder = 'SomePath';
?>
script1.php
<?php
require_once('config.php');
function doStuff(){
global $folder;
echo($folder);
}
doStuff();
?>
我得到了
PHP Notice: Undefined variable: folder in script1.php
这是php版本5.4.41
,我无法做任何事情(没有根)
答案 0 :(得分:0)
保持简单,如果是我:
//config.php:
<?php
$folder = 'SomePath';
?>
//script1.php
<?php
require_once('config.php');
function doStuff($folder){//parse the variable in to the function
echo($folder);
}
doStuff();
?>