1

[编辑/更新]

请允许我解释一下情况。我有三个文件:

下面是 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 编程相当陌生,并且对所有语法都有问题,我也不知道这是否是一个好方法。非常感谢任何帮助,如果需要更多详细信息或信息,请告诉我。

4

3 回答 3

3

是的,因为$db是方法内部的局部变量。将其作为参数传递:

class Colors
{
  protected $db;

  public function __construct(Db $db = null)
  {
    $this->db = $db;
  }

  public function insertColor()
  {
    if ($this->db != null)
    {
      $this->db->query();
    }
  }
}

并且query是一种方法,因此您必须添加括号:$db->query()

于 2012-07-13T21:32:28.253 回答
3

我会从您的类文件中删除数据库的包含和初始化,并将其放入其中colors.php。然后将$db作为参数传递给构造函数:

<?php
Require('db.class.php');
Require('colors.class.php');

$db = new Db;

$colors = new Colors($db);
$colors->insertColor();
?>

我还将删除构造函数中的默认值,因为Colors如果没有数据库,您的类将无法工作:

public function __construct(Db $db)    // constructor Colors class

最后,我会研究类的自动加载,这样您就不必手动要求它们。

于 2012-07-13T22:22:22.427 回答
0

更改$db->query;$db->query();

此外,需要将 $db 声明为全局变量才能像这样访问它。可能要考虑将其设为私有财产Colors

于 2012-07-13T21:32:46.627 回答