root/lang/php/Cache/trunk/utils.php @ 5458

Revision 5458, 340 bytes (checked in by takuya, 5 years ago)

/lang/php/Cache/Handler/ APIとデザインパターンの再検討&ディレクトリ階層の修正

Line 
1<?php
2///
3///for simple usage
4///
5///APIが複雑化してきたので簡単に使えるキャッシュ関数を作成
6///
7require_once "Cache/Handler.php";
8require_once "Cache/Handler/Resource/File.php";
9function cache_get_contents($id, $path){
10    return ;
11}
12function cache_put_contents($id, $data, $path){
13    return;
14}
15
16?>
17
Note: See TracBrowser for help on using the browser.