在我的网页末尾我想显示使用过的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'>© Company 1990 - $jahr<br />
Aktualisiert: $wochentag, den $Speicherdatum</div>";
echo $html;
&GT;
现在我得到了正确的约会($ Speicherdatum),但这一天总是&#34;星期四&#34;。我的错误在哪里?
答案 0 :(得分:0)
strftime
的第二个参数需要一个整数时间戳,而不是格式化的日期字符串。
请改为尝试:
$wochentag = strftime("%A", filemtime($filename));