PHP code example of konapun / pdo-decorator

1. Go to this page and download the library: Download konapun/pdo-decorator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

konapun / pdo-decorator example snippets


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