PHP 只获取数组的第一个元素

PHP only getting the first element of a array

您好,我正在制作登录和注册脚本。我的配置有全局数组。但是当我试图连接到我的数据库时。他无法从只有主机的阵列中获取它。他不会深入其中。我唯一得到的是 127.0.0.1 我想要拥有的每样东西,就像我想要的用户名一样,我将获得 127.0.0.1。我不知道出了什么问题,但我觉得我的 Config.php 出了点问题。这也是我在屏幕上的输出。有人知道我做错了什么吗?

我只取回主机数组。当我想要回用户名或数据库名称时,我得到了主机。 这是我的全部代码。

index.php

<?php
require_once 'core/init.php';


DB::getInstance();

Init.php

    <?php
session_start();

$GLOBALS['config'] = array(
    'mysql' => array(
                    'host'      => '127.0.0.1',
                    'username'  => 'root',
                    'password'  => '',
                    'db'        => 'login'

                    ),
    'remember' => array(
                    'cookie_name'   => 'hash',
                    'cookie_expiry' => '648000'
    ),

    'session' => array(
        'session_name' => 'user'
    )
);

spl_autoload_register(function($class){
    require_once 'classes/' . $class . '.php';
});

require_once '/functions/sanitize.php';

Config.php

<?php
class Config{
    public static function get($path = null){
        if($path){
        $config = $GLOBALS['config'];
        foreach($config as $key =>$value){
            if(isset($value)){
                $config1 = $value;
                foreach ($config1 as $key =>$list){
                    return  $list;
                }
            }

        }
          return false;
        }    

    }
}

DB.php

<?php

class DB{
    private static $_instance = null;
    private $_pdo, $_query, $_error = false, $_result, $_count = 0; 

    private function __construct(){
        try{
            $this->_pdo = new PDO('mysql:host=' . Config::get('mysql/host') . ';dbname=' . Config::get('mysql/db'), Config::get('mysql/username'), Config::get('mysql/password'));
        }catch(PDOException $e){
            echo Config::get('mysql/host') . Config::get('mysql/db') . Config::get('mysql/db'); // Only for testing getting 127.0.0.1 back for each of them.

        }
    }


    public static function getInstance(){
        if(!isset(self::$_instance)){
            self::$_instance = new DB();
        }
        return self::$_instance;
    }
}
private static $_istance = null;

Tyyyypooooooooooooo :) n 缺失

编辑

打字数 2

'msql' => array(

应该在 mysql 之前,这就是您的配置未加载的原因。

重写我的 Config.php class 后它成功了。

<?php
class Config{
    public static function get($path = null){
        if($path){
            $config = $GLOBALS['config'];
            $path = explode('/', $path);

            foreach($path as $bit){
                if(isset($config[$bit])){
                    $config = $config[$bit];
                }
            }   
            return $config;
        }
    }
}