PHP Classes

File: sample_nest_file_cache.php

Recommend this page to a friend!
  Classes of modbay   Cache File - Part File   sample_nest_file_cache.php   Download  
File: sample_nest_file_cache.php
Role: Example script
Content type: text/plain
Description: Caching File/Part File nested
Class: Cache File - Part File
Cache PHP script output in files
Author: By
Last change: Allow Users to see a sample without need to login
Date: 13 years ago
Size: 1,889 bytes
 

Contents

Class file image Download
<?php
   
include_once 'class/cache.php';
   
/**
     * call the class after the include
     */
   
$file_cache=new cache();
   
$file_cache->set_cache_time(300)->start_cache(); ///300 is in seconds means 5 minutes
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

    <head>

        <!--Meta Tags-->
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta http-equiv="Content-Style-Type" content="text/css" />
        <meta http-equiv="Content-Script-Type" content="text/javascript"/>
        <meta http-equiv="Content-Language" content="en"/>

        <meta name="Robots" content="INDEX,FOLLOW"/>
        <meta name="Copyright" content="Rawas Travel 2010" />
        <meta name="Author" content="Mohammad A.Baydoun"/>
        <meta name="Distribution" content="global" />
        <meta name="Description" content="" />
        <meta name="Keywords" content="" />



        <!--Title-->
        <title>Sample File</title>

       
    </head>
    <body>
        <?php
        $part_cache
= new cache();
        if(
$part_cache->set_cache_time(600)->start_cache("part_file")){ ///600 is in seconds means 10 minutes
       
?>
The site only accepts contributions that contain code in the form of Object Oriented Programming (OOP) classes.
        <?php $part_cache->end_cache();}?>
If you do not know what is Object Oriented Programming, please learn about it first before you consider submitting any code.
        Of course you may submit additional scripts or other related files, but each contributed package must include at least one class of objects that you submit as part of the package.
    </body>
</html>
<?php $file_cache->end_cache();?>