douyan4243 2014-05-19 03:02
浏览 21

在PHP中使用类外的变量

Assuming that I have 3 PHP files:

  1. index.php:

    require('config.php');
    require('connect_db.php');
    new connect_db();
    
  2. config.php:

    $config['db_host'] = 'localhost';
    $config['db_username'] = 'root';
    $config['db_password'] = '';
    $config['db_name'] = 'my_db';
    
  3. connect_db.php:

    class connect_db{
        function __construct(){
           $this->conn = new mysqli($config['db_host'], $config['db_username'], $config['db_password'], $config['db_name']);
        }
    }
    

When I run above codes, I meet an error: "Undefined variable: config in....".
My question is: How can I use the $config variable inside "connect_db" class without including config.php file in connect_db.php file.

Thanks!

  • 写回答

2条回答 默认 最新

  • dsaob80228 2014-05-19 03:17
    关注

    As mentioned in the comments, pass the $config variable into the constructor of the class.

    new connect_db($config);
    
    class connect_db{
        function __construct($config){
           $this->conn = new mysqli($config['db_host'], $config['db_username'], $config['db_password'], $config['db_name']);
        }
    }
    

    Hope it helps.

    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类