我一直收到这个错误
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166
Fatal error: Class 'mysqli_connect' not found in C:\xampp\htdocs\bb2\includes\classes\connection.php on line 3
我不知道为什么,这是我的代码
这是 config.php
<?php
define("DB_HOST","localhost");
define("DB_USER","root");
define("DB_NAME","beatbeast");
define("DB_PASSWORD","123192");
?>
这是我的connection.php
<?php
require_once('config.php');
$mysqli = new mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);