Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $carpeta = "img";
  2. if(is_dir($carpeta)){
  3. if($dir = opendir($carpeta)){
  4. while(($archivo = readdir($dir)) !== false){
  5. if($archivo != '.' && $archivo != '..' && $archivo != '.htaccess'){
  6. $fechaC = date('Y-m-d H:i:s',filemtime($carpeta.'/'.$archivo));
  7. echo $archivo."/".$fechaC."<br>";
  8. }
  9. }
  10. closedir($dir);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement