Recommend this page to a friend! |
Download .zip |
Info | View files (5) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2011-01-18 (5 years ago) | Not yet rated by the users | Total: 578 | All time: 5,076 This week: 953 |
Version | License | PHP version | Categories | |||
cache-file-part 1.0 | GNU General Publi... | 5.0 | PHP 5, Files and Folders, Cache |
Description | Author | |
This class can be used to cache content in files. |
/** * cache class . used to cache a file or part of a file * @author Mohammad A.Baydoun <momito_bay@hotmail.com> * @copyright copyright (c) copyright 2011 * @license GNU Public Licence (GPL) */ /** * @version 1.0 support file and part file caching * @example * ***file caching*** * $cache=new cache(); * $cache->start_cache(); * place data in between example (html /php echo of your output) * $cache->end_cache(); * * * ***part file caching*** * $cache=new cache(); * $cache->start_cache($id); where $id is the part you want to cache it * place data in between example (html /php echo of your output) * $cache->end_cache(); */ /** * check the sample in order to see the class in action * please note that the folder upload should be 777; */ |
Files |
File | Role | Description | ||
---|---|---|---|---|
class (1 file) | ||||
readme.txt | Doc. | include some description of how to use the class | ||
sample_file_cache.php | Example | Example of file caching | ||
sample_nest_file_cache.php | Example | Caching File/Part File nested | ||
sample_part_file_cache.php | Example | Example of part file caching |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Pages that reference this package |
PHP Cache System (class) (Spanish) Working with a cache system is one of the simplest forms and used the time to save resources on sites with high traffic... |