7

这是 config.php 文件

<?php

error_reporting(E_ALL ^ E_NOTICE);

/*=========== Database Configuraiton ==========*/

$db_host = "localhost";
$db_user = "test";
$db_pass = "test";
$db_name = "dbtest";


/*=========== Website Configuration ==========*/

$defaultTitle = 'testing';
$defaultFooter = date('Y').' &copy; testing';

?>

这是对 config.php 的引用

<?php


require_once "includes/config.php";
require_once "includes/connect.php";
require_once "includes/helpers.php";



header('Cache-Control: max-age=3600, public');
header('Pragma: cache');
header("Last-Modified: ".gmdate("D, d M Y H:i:s",time())." GMT");
header("Expires: ".gmdate("D, d M Y H:i:s",time()+3600)." GMT");

?>

Connect.php 在下面

<?php

/*
        The login details are taken from config.php.
*/

try {
    $db = new PDO(
        "mysql:host=$db_host;dbname=$db_name;charset=UTF-8",
        $db_user,
        $db_pass
    );

    $db->query("SET NAMES 'utf8'");
    $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e) {
    error_log($e->getMessage());
    die("A database error was encountered");
}


?>

有人看到这段代码的问题吗?我从 connect.php 收到错误消息“遇到数据库错误”我需要另一双眼睛,因为我的所有信息看起来都是正确的,而且我在代码中看不到错误。谢谢。

4

4 回答 4

25

您只需将 UTF-8 更改为 utf8 ..

try {
      $db = new PDO(
              "mysql:host=$db_host;dbname=$db_name;charset=utf8",
              $db_user,
              $db_pass
            );
于 2013-04-23T07:15:14.267 回答
1

一旦尝试直接使用您的凭据,而不是将它们用作变量。

也尝试使用以下调试:

catch(PDOException $e) {
    error_log($e->getMessage());
    die("A database error was encountered -> " . $e->getMessage() );
}

让我知道它是否有效。

于 2012-07-13T17:43:08.863 回答
0

它以前工作过吗?我猜你的问题是“localhost”需要是“127.0.0.1”或类似的。

于 2012-07-13T17:26:39.583 回答
0

$db->query(...) 用于 SELECT 并且您正在设置一个参数。

尝试

$db->e​​xec(...) 而是可以解决。

于 2012-07-13T17:47:53.710 回答