获取使用filemtime()函数修改的特定日期

时间:2016-04-22 09:29:29

标签: php

我正在尝试在我的页面上获取并显示使用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;}
?>

0 个答案:

没有答案