Example #1
0
<?php

include_once 'gv.php';
include_once 'dbconnect.php';
include 'phpfastcache/phpfastcache.php';
$cache = phpFastCache();
$db = new DBConnect();
$matchdays = $cache->get('matchdays');
if ($matchdays == null) {
    $matches = $db->myExec(GETMATCHES);
    while ($match = $matches->next()) {
        $matchdays['group' . $match['group_id']][] = $match;
    }
    $cache->set('matchdays', $matchdays, 86400 * 30);
}
var_dump($matchdays);