konapun/pdo-decorator

PDO 装饰器接口和一些基本装饰器

1.0.0 2014-12-10 19:54 UTC

This package is auto-updated.

Last update: 2024-09-10 08:56:32 UTC


README

PDO 装饰器接口和一些基本装饰器

use PDO\Decorator\TimedQueryDecorator as TimedDecorator;

$showTime = true;
$basePDO = new PDO($dsn, $username, $passwd);
$timedPDO = new TimedDecorator($basePDO, $showTime);

// From here, use $timedPDO just as you'd use $basePDO

创建装饰器

包含一个单个装饰器,TimedQueryDecorator,它既提供了装饰查询的执行时间,也作为创建您自己的 PDO 装饰器的示例