PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of V   MultiCache library   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: MultiCache library
Cache data in files or memcached
Author: By
Last change: Version 1.01
Date: 13 years ago
Size: 170 bytes
 

Contents

Class file image Download
<?php
include '../../MultiCache.class.php';
include
'../../MultiCacheFile.class.php';

$mc = new MultiCacheFile();
$mc->set('test', 'value', 10);

print
$mc->get('test');