$this->Settings = array( "host" => $host , "user" => $user , "pass" => $pass );
$this->db = $db;
$this->Settings["name"] = ereg_replace ("_", "", $this->db);
$this->init();
我有一个应用程序在从 php 5.2 迁移到 php 5.3 后无法运行。
即使我将上面的 ereg_replace 行更改为
$this->aSettings["name"] = preg_replace("/_/", "", $this->db);
它仍然没有从数据库中获取设置。