PDOStatement クラスを継承して、Web サイトのスクリプトで使用したいと考えています。
しかし、必要なオブジェクトを取得する方法に不満があります。PDO::query は、直接の PDOStatement オブジェクトのみを返し、PDOStatement オブジェクトまたは継承されたクラスを作成する方法は他にないように見えます。
最初は、PDOStatement オブジェクトを継承クラスのコンストラクターに移動することを考えました。
$stmt = PDO -> query("select * from messages");
$messageCollection = new Messaging_Collection($stmt);
ただし、PDOStatement のインスタンスを継承オブジェクト (Messaging_Collection) にする方法。それは私にとって大きな疑問です。
class Messaging_Collection extends PDOStatement
{
public function __construct(PDOStatement $stmt)
{
//there i should to transform $stmt to $this
// direct $this = $stmt is not possible
// is there other right way?
}