13 lines
No EOL
223 B
PHP
Executable file
13 lines
No EOL
223 B
PHP
Executable file
<?
|
|
|
|
include('php/library.php');
|
|
|
|
$list = crawlPath('/mnt/storage/gas/Archive/Movies/');
|
|
|
|
foreach ($list as $value) {
|
|
$pathinfo = pathinfo($value);
|
|
if (in_array($pathinfo['extension'], $imagetype))
|
|
echo "$value\n";
|
|
}
|
|
|
|
?>
|