| // | Allan Hansen | // +----------------------------------------------------------------------+ // | demo.cache.mysql.php | // | Sample script demonstrating the use of the MySQL caching | // +----------------------------------------------------------------------+ // // $Id: demo.cache.mysql.php,v 1.3 2006/11/16 22:11:58 ah Exp $ require_once('../getid3/getid3.php'); require_once('../getid3/extension.cache.mysql.php'); $getid3 = new getid3_cached_mysql('localhost', 'database', 'username', 'password'); $r = $getid3->Analyze('/path/to/files/filename.mp3'); echo '
';
var_dump($r);
echo '
'; // uncomment to clear cache //$getid3->clear_cache(); ?>