时间:2021-07-01 10:21:17 帮助过:2人阅读
function db_connect() { $db = @new mysqli("127.0.0.1", "developer", "123456", "test"); if (!$db) return false; return $db; }
function db_connect() { $db = @new mysqli("127.0.0.1", "developer", "123456", "bbs"); if (!$db) return false; return $db; }