使用strftime在filemtime中获取日期

时间:2014-08-30 10:31:41

标签: php html html5 date strftime

在我的网页末尾我想显示使用过的xml文件的日期。我用这段代码做到了:

  <?php

          $html = "";

          $filename = '../XML-Daten/Wein.xml';

          $Speicherdatum = date('j. n. Y', filemtime($filename));

          setlocale(LC_TIME, "de_DE");

          $wochentag = strftime("%A",  $Speicherdatum);

          $jahr = date('Y');

          $html .="<div id='ca'>&copy; Company  1990 - $jahr<br />
          Aktualisiert: $wochentag, den $Speicherdatum</div>";

          echo $html;

&GT;

现在我得到了正确的约会($ Speicherdatum),但这一天总是&#34;星期四&#34;。我的错误在哪里?

1 个答案:

答案 0 :(得分:0)

strftime的第二个参数需要一个整数时间戳,而不是格式化的日期字符串。

请改为尝试:

$wochentag = strftime("%A", filemtime($filename));