Cakephp中是否有能夠返回目錄中最新修改文件的方法?我在Cakephp Model中嘗試了$this->System->getLatestModifiedFile()
,但得到了Call to a member function getLatestModifiedFile() on a non-object
錯誤。如何使用Cakephp獲取目錄中的最新修改文件
感謝您的諮詢!
Cakephp中是否有能夠返回目錄中最新修改文件的方法?我在Cakephp Model中嘗試了$this->System->getLatestModifiedFile()
,但得到了Call to a member function getLatestModifiedFile() on a non-object
錯誤。如何使用Cakephp獲取目錄中的最新修改文件
感謝您的諮詢!
請通過http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html並在File API部分查找File::lastChange()
。這可能有幫助。
參考cakephp文件和文件夾API,我設法使用File::lastChange()
方法來解決我的問題。感謝您的幫助。這裏有一個例子:
App::uses('Folder', 'Utility');
App::uses('File', 'Utility');
$file = new File('/tmp/test.txt');
//the following will return an epoch time, can be formatted by date method
echo $file->lastChange();
感謝您的指導 – CheeHow