szurubooru/src/PDOEx.php

19 lines
295 B
PHP
Raw Normal View History

<?php
namespace Szurubooru;
class PDOEx extends \PDO
{
private $queryCount = 0;
public function prepare($statement, $driverOptions = [])
{
++ $this->queryCount;
return parent::prepare($statement, $driverOptions);
}
public function getQueryCount()
{
return $this->queryCount;
}
}