PHP code example of gajus / doll
1. Go to this page and download the library: Download gajus/doll 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/ */
gajus / doll example snippets
$data_source = new \Gajus\Doll\DataSource([
'host' => '127.0.0.1',
'driver' => 'mysql',
'database' => null,
'user' => null,
'password' => null,
'charset' => 'utf8',
'driver_options' => []
]);
$db = new \Gajus\Doll\PDO($data_source);
$sth = $db->prepare("SELECT ?"); // PDOStatement
$sth->execute([1]); // boolean
$input = $sth->fetch(PDO::FETCH_COLUMN);
$input = $db
->prepare("SELECT ?") // Gajus\Doll\PDOStatement
->execute([1]) // Gajus\Doll\PDOStatement
->fetch(PDO::FETCH_COLUMN);
$sth = $db->prepare("SELECT :foo, :bar, :baz");
$sth->bindValue('foo', 'foo', PDO::PARAM_STR);
$sth->bindValue('bar', 1, PDO::PARAM_INT);
$sth->bindValue('baz', $fp, PDO::PARAM_LOB);
$sth->execute();
$sth = $db->prepare("SELECT s:foo, i:bar, l:baz");
$sth->execute(['foo' => 'foo', 'bar' => 1, 'baz' => $fp]);
$db->prepare("SELECT :id, :foo_id");
$db->prepare("SELECT i:id, i:foo_id");
$db->prepare("SELECT s:id, s:foo_id");
$db->setAttribute(\Gajus\Doll\PDO::ATTR_INFERRED_TYPE_HINTING, false);
$db->prepare("SELECT :foo, :foo");
$db->setAttribute(\Gajus\Doll\PDO::ATTR_LOGGING, true);
$db
->prepare("SELECT :foo, SLEEP(.2)")
->execute(['foo' => 'a']);
$log = $db->getLog();
var_dump($log);
array(1) {
[0]=>
array(7) {
["statement"]=>
string(22) "SELECT :foo, SLEEP(.2)"
["parameters"]=>
array(1) {
["foo"]=>
string(1) "a"
}
["execution_wall_time"]=>
float(0.20117211341858)
["backtrace"]=>
array(5) {
["file"]=>
string(85) "/../doll/tests/LogTest.php"
["line"]=>
int(28)
["function"]=>
string(7) "execute"
["class"]=>
string(23) "Gajus\Doll\PDOStatement"
["type"]=>
string(2) "->"
}
["execution_duration"]=>
float(0.200723)
["execution_overhead"]=>
float(0.00044911341857909)
["query"]=>
string(19) "SELECT ?, SLEEP(.2)"
}
}