Alexander Zinchuk f90317c650 [Build]
2023-05-28 20:01:34 +02:00

9 lines
179 B
PHP

<?php
$dh = opendir(__DIR__);
while (($file = readdir($dh)) !== false){
if (preg_match('!^\d+_UNKNOWN.png$!', $file)){
echo "<img src=\"$file\">\n";
}
}
closedir($dh);