Slide 19
Slide 19 text
// Create a new instance of Foo
list($host, $user, $pw, $db) = getDbConfig();
$mysqli = new mysqli($host, $user, $pw, $db);
$db = new DatabaseConnection($mysqli);
list($mcHost, $mcPort) = getMemcacheConfig();
$memcache = new MemcacheClient($mcHost, $mcPort);
$foo = new Foo($db, $memcache);