[编辑/更新]
请允许我解释一下情况。我有三个文件:
下面是 db.class.php。调用时,它在构造函数中连接到数据库,并在析构函数中关闭连接。如果您注意到 query() 方法,那么它现在只是一个静态 INSERT,因为这就是我被卡住的地方。
<?php
//
// Class: db.class.php
// Desc: Connects to a database and runs PDO queries via MySQL
// Settings:
error_reporting(E_ALL);
////////////////////////////////////////////////////////////
class Db
{
# Class properties
private $DBH; // Database Handle
private $STH; // Statement Handle
# Func: __construct()
# Desc: Connects to DB
public function __construct()
{
// Connection information
$host = 'localhost';
$dbname = 'removed';
$user = 'removed';
$pass = 'removed';
// Attempt DB connection
try
{
$this->DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
$this->DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo 'Successfully connected to the database!';
}
catch(PDOException $e)
{
echo $e->getMessage();
}
}
# Func: query(sql statement)
# Desc: Sends a query to the DB
public function query($sql_statement)
{
$sql = array(':color' => $sql_statement);
$this->STH = $this->DBH->prepare("INSERT INTO color_table (color) value ( :color )");
$this->STH->execute($sql);
}
# Func: __destruct()
# Desc: Disconnects from the DB
public function __destruct()
{
// Disconnect from DB
$this->DBH = null;
echo 'Successfully disconnected from the database!';
}
}
?>
下面是colors.class.php。目前,它只有一个插入功能。我要做的基本上是从 db.class.php 中提取我在 query() 函数中的内容并将其放入 insertColor() 函数中,并传递整个 SQL 语句,无论它是插入、删除、或更新到 query() 函数。
<?php
//
// Class: colors.class.php
// Desc: Provides methods to create a query to insert,
// update, or delete a color from the database.
////////////////////////////////////////////////////////////
class Colors
{
# Class properties
protected $db;
# Func: __construct()
# Desc: Passes the Db object so we can send queries
public function __construct(Db $db)
{
$this->db = $db;
}
# Func: insertColor()
# Desc: Sends an INSERT querystring
public function insertColor($color)
{
$this->db->query($color);
echo 'Inserted color:' . $color;
}
}
?>
下面我们有colors.php,上面的所有内容都被实例化和实现。所以在这里我将传递我真正想要插入数据库的颜色。
<?php
Require('db.class.php');
Require('colors.class.php');
$db = new Db;
$colors = new Colors($db);
$colors->insertColor('TestColor'); // Passing the color here to be put into an insert statement
?>
我基本上被卡住的地方是我试图让 colors.class.php 创建一个 PDO 语句,然后在它们准备好运行时将其传递给 db.class.php query() 方法。现在,PDO 语句只是在 query() 方法中定义,但我试图避免这种情况。本质上,我想从 query() 方法中提取我所拥有的内容,并将其拆分为 Colors 类中的三个方法,一个用于插入、更新和删除。
但是,我对 OOP 编程相当陌生,并且对所有语法都有问题,我也不知道这是否是一个好方法。非常感谢任何帮助,如果需要更多详细信息或信息,请告诉我。