コード例 #1
0
ファイル: Store.php プロジェクト: AnnatarHe/zhihuCrawler
 public function saveConfig($times, $id)
 {
     $fileSave = Boot::fileCache('lastTimes.txt');
     $fileSave->saveConfig($times, $id);
     unset($fileSave);
 }
コード例 #2
0
 protected function getLastTimesAndId()
 {
     $times = Boot::fileCache('lastTimes.txt');
     return $times->getConfig();
 }