在codeigniter中运行函数后将时间戳保存在文本文件中

zujrkrfu  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(91)

每当codeigniter中的函数运行时,我都想把时间戳保存在一个文本文件中,我该怎么做呢?

public function updateData(){
      Running this function each time it will save the timestamp in a text file.
}
7vux5j2d

7vux5j2d1#

你可以在这里找到更多的信息和例子-〉https://www.w3schools.com/php/php_file_open.asp

public function updateData(){
             # Running this function each time it will save the timestamp in a text file.
             $path2file = "/docs/";
             $fileName = "timestamp.txt";
             $data = time()."".PHP_EOL; // PHP_EOL - new line
             $fp = fopen($path2file.$filename, 'a');
             fwrite($fp, $data);
        }

相关问题