gpt4 book ai didi

php - PDO:检查用户是否输入了正确的数据库信息(安装脚本)

转载 作者:行者123 更新时间:2023-11-29 06:27:32 26 4
gpt4 key购买 nike

我正在为我的项目编写安装脚本。基本上我想做的是检查用户是否输入了正确的数据库信息,如果不正确,则返回错误。这是我试图完成的:

<?php
error_reporting(E_ALL);
ini_set('display_errors',1);

require "classes/pdo.class.php";

// Define configuration
define("DB_HOST", $_POST['db_host']);
define("DB_USER", $_POST['db_name']);
define("DB_PASS", $_POST['db_user']);
define("DB_NAME", $_POST['db_pass']);

try {
$db = new Database();
echo "Succes!";
} catch(PDOException $ex){
echo "Failed!";
}

?>

不幸的是,这总是返回成功!即使用户输入的数据不正确。有什么我想念的吗?我必须使用不同的方法吗?

这是我用于 PDO 类的代码:

<?php

Class Database {
private $host = DB_HOST;
private $user = DB_USER;
private $pass = DB_PASS;
private $dbname = DB_NAME;

private $dbh;
private $error;

private $stmt;

public function __construct(){
// Set DSN
$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname;
// Set options
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
// Create a new PDO instanace
try{
$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
}
// Catch any errors
catch(PDOException $e){
$this->error = $e->getMessage();
}
}

public function query($query){
$this->stmt = $this->dbh->prepare($query);
}

public function bind($param, $value, $type = null){
if (is_null($type)) {
switch (true) {
case is_int($value):
$type = PDO::PARAM_INT;
break;
case is_bool($value):
$type = PDO::PARAM_BOOL;
break;
case is_null($value):
$type = PDO::PARAM_NULL;
break;
default:
$type = PDO::PARAM_STR;
}
}
$this->stmt->bindValue($param, $value, $type);
}

public function execute(){
return $this->stmt->execute();
}

public function column(){
$this->execute();
return $this->stmt->fetchAll(PDO::FETCH_COLUMN);
}

public function resultset(){
$this->execute();
return $this->stmt->fetchAll(PDO::FETCH_ASSOC);
}

public function single(){
$this->execute();
return $this->stmt->fetch(PDO::FETCH_ASSOC);
}

public function rowCount(){
return $this->stmt->rowCount();
}

public function lastInsertId(){
return $this->dbh->lastInsertId();
}

public function beginTransaction(){
return $this->dbh->beginTransaction();
}

public function endTransaction(){
return $this->dbh->commit();
}

public function cancelTransaction(){
return $this->dbh->rollBack();
}

public function debugDumpParams(){
return $this->stmt->debugDumpParams();
}
}

?>

最佳答案

你每次都成功的原因是因为无论连接是否成功,都会创建数据库对象。

您应该尝试连接,如果连接失败,那么您就知道信用有误。您可以在您的代码中运行它,或在您的数据库类中创建一个方法来检查它并返回 true 或 false。 (或者我想您可以修改构造函数以抛出异常,但我认为这不是正确的方法)

    $dsn = 'mysql:host=' . $host . ';dbname=' . $dbname;
// Set options
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
try{
$dbh = new PDO($dsn, $user, $pass, $options);
}
// Catch any errors
catch(PDOException $e){
$error = $e->getMessage();
}

关于php - PDO:检查用户是否输入了正确的数据库信息(安装脚本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30063832/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com