我是一个新手,并且已经用 PHP 编写了一些代码,这给了我上面提到的通知。我的程序运行良好,但我想解决该通知。我知道我可以关闭通知,但我不想这样做。请让我知道我该如何解决。
我的代码 -
$GLOBALS['config'] = array(
'mysql' => array(
'host' => '127.0.0.1',
'username' => 'root',
'password' => '',
'database' => 'app'
)
);
$config = $GLOBALS['config'];
$path = explode('/', 'mysql/host');
foreach($path as $bit){
if(isset($config[$bit])){
$config = $config[$bit];
}
}
echo $config;
我的输出来自
echo $config;
是 127.0.0.1 和预期的一样。
但是我在网上收到通知-
$config = $GLOBALS['config'];
请帮忙。