我正在尝试在我的页面上获取并显示使用filemtime()修改相同日期的特定文件。但我只能显示日期集,而不是我在表格中输入的具体日期。有人可以请赐教:(我在php中有点新手
<?php
$date1 = strtotime($datemod);
$files = glob($directory . '*.txt');
foreach (new DirectoryIterator($directory) as $file) {
if($file->isDot()) continue;
echo '<center>'.date('Y-m-d',filemtime($file->getPathName())) . '</center>';
$datemodified = date('Y-m-d',filemtime($file->getPathName()));
if($date1 == $datemodified){
echo '<center>'.date('Y-m-d',filemtime($file->getPathName())) . '</center>';
}
}
if ( $files !== false)
{ $filecount = count( $files );
echo "<br><center>There are <h1>".$filecount."</h1> txt files in the folder!</center></br>";}
else
{echo 0;}
?>