- 论坛徽章:
- 0
|
这个函数是这样的:
function db_connect_real($host,$user,$pass,$db_name,$db_type, $port = "3306", $retries = 20) {
global $cnn_id;
$i = 0;
$cnn_id = NewADOConnection($db_type);
$hostport = $host . ":" . $port;
while ($i <= $retries) {
if ($cnn_id->PConnect($hostport,$user,$pass,$db_name)) {
return(1);
}
$i++;
usleep(40000);
}
die("FATAL: Cannot connect to MySQL server on '$host'. Please make sure you have specified a valid MySQL database name in 'include/config.php'\n");
return(0);
}
我追踪到有问题的是:if ($cnn_id->PConnect($hostport,$user,$pass,$db_name)) {这一行,我对有些语法不是太懂,请高人们指点下。就算它有错误,也应该提示出来呀,啥都不提示,直接给个空页面。 |
|