Changeset 5457

Show
Ignore:
Timestamp:
01/25/08 02:29:02 (5 years ago)
Author:
takuya
Message:

/lang/php/Cache/Handler/ キャッシュオブジェクトのAPIを大幅に見直し

Location:
lang/php/Cache/trunk/Handler
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/Cache/trunk/Handler/CachedMethod.php

    r3747 r5457  
    33//動作の遅い関数の結果を保存しておく。 
    44//たとえばfile_get_contentsやSpycの結果をキャッシュするのに使うと良い 
    5 class Cache_Handler_CachedMethod{ 
    6         public function call_func($methodname, $args){ 
     5// 
     6class Cache_Handler_CachedMethod 
     7{ 
     8        public function call_func($methodname, $args) 
     9        { 
    710                //todo ID generatorを使うように変更する。 
    811                $str = $methodname.var_export($args,true);