Skip to content

Instantly share code, notes, and snippets.

View m-r-r's full-sized avatar

Mickaël RAYBAUD-ROIG m-r-r

View GitHub Profile
@stephen-hill
stephen-hill / pdo-fetch-benchmark.php
Created May 3, 2013 10:52
Benchmark for the different PDO fetch styles.
<?php
set_time_limit(0);
// List of fetch styles to test
$fetchStyles = array(
'Assoc' => PDO::FETCH_ASSOC,
'Both' => PDO::FETCH_BOTH,
'Lazy' => PDO::FETCH_LAZY,
'Num' => PDO::FETCH_NUM,