有没有办法做到这一点/在php.ini
配置文件中指定这个?至少对于本地服务器而言,这将非常好,只需编写函数而不必在每次在方法中使用全局变量时都编写 global 关键字。
有什么办法可以做到这一点?
编辑:
我的意思是简单地写这个:
示例文件“ index.php ”:
$MY_ARRAY = 数组();
包括(“functions.php”);
然后在“ functions.php ”中:
函数 addToArray($pMessage) {
$MY_ARRAY[] = "<a href='somelink.php'>$pMessage</a>";
}
代替:
然后在“ functions.php ”中:
函数 addToArray($pMessage) {
全球 $MY_ARRAY;
$MY_ARRAY[] = "<a href='somelink.php'>$pMessage</a>";
}