Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Date 显示上次修改日期_Date_Content Management System_Typo3 - Fatal编程技术网

Date 显示上次修改日期

Date 显示上次修改日期,date,content-management-system,typo3,Date,Content Management System,Typo3,我试图显示上次有人在TYPO3后端上传/更改文件的时间 我试过这样的东西 <span class="download__specs-item"><f:format.date>now</f:format.date></span> 现在 但这显然不是我想要的,我想要查看给定文件上次修改的日期 我不知道如何/在哪里照看这样的东西 <span class="download__specs-item"><f:format.date>

我试图显示上次有人在TYPO3后端上传/更改文件的时间

我试过这样的东西

<span class="download__specs-item"><f:format.date>now</f:format.date></span>
现在
但这显然不是我想要的,我想要查看给定文件上次修改的日期

我不知道如何/在哪里照看这样的东西

<span class="download__specs-item"><f:format.date>now</f:format.date></span>
ps:我不知道如何正确地用谷歌搜索,哈哈

多谢各位

问候,,
输入错误3的初学者。

如果有人还在寻找答案,我就是这样解决的

<f:debug>{_all}</f:debug>
{u all}
在页面上单击,然后单击可用属性。 这就是它对我的作用

<span class="yourclassisprobablyhere">
    <f:format.date format="d M Y">
       {file.originalFile.properties.modification_date}
    </f:format.date>
</span>

{file.originalFile.properties.modification_date}