drgd73844 2013-10-27 02:06
浏览 34
已采纳

PHP注意:第10行的数组到字符串转换

I am a newbie and have written some code in PHP which gives me above mentioned notice. My program works perfectly but i want to resolve the notice. I know i can turn off the notice, but i dont want to do that. Please let me know how can i fix it.

My code -

$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;

My output from

echo $config;

is 127.0.0.1 and it is as expected.

But i am getting the notice on line -

$config = $GLOBALS['config'];

Please help.

  • 写回答

1条回答 默认 最新

  • duanhua5523 2013-10-27 02:30
    关注

    Try adding this line right before the $config = $GLOBALS['config']

    $config = array();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择