PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Bole Chen   Easy Cacher   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Small Example
Class: Easy Cacher
Class to cache pages
Author: By
Last change:
Date: 21 years ago
Size: 828 bytes
 

Contents

Class file image Download
<?php
/*
run this scrpt,at the currerent dir,u will see a new folder names' "cache1"
in the "cache1" folder will have a file.the file's contents will be:

This is a Cache test line 1 ...
This is a Cache test line 2 ...
This is a Cache test line 3 ...

And if u wanta del all cache file,u will use:
$c->flush();

It's very easily to use,isn't it? :)
If u find a bug plz report to me: avenger@php.net
Read and learn!! :)
*/

require_once 'cache.inc.php';

// Create Object
$c = new cache('cache1/',120); // The cache path and cache time

// Start,All the word between the start functon and the end function will be cached
$c->start();

echo
"This is a Cache test line 1 ...\n";
echo
"This is a Cache test line 2 ...\n";
echo
"This is a Cache test line 3 ...\n";

// End and output
$c->end();

?>