virt2/api/php/img.php

31 lines
793 B
PHP
Raw Permalink Normal View History

<?php
function list_file ( $dir )
{
if ( $dir [ strlen( $dir ) - 1 ] != '/' ){
$dir .= '/';
}
$nDir = opendir( $dir );
while ( false !== ( $file = readdir( $nDir ) ) )
{
if ( $file != "." AND $file != ".." ){
if ( !is_dir( $dir . $file ) ){
$files [] = $file;
}
}
}
closedir( $nDir );
return $files;
}
//получаем все файлы в массив
$all_files=list_file('./');
$count = count($all_files);
//перебираем массив
for($x=0; $x<$count; $x++){
if ($all_files[$x]!='ntzt.jpg'){
//проверяем размер, если более 600 px то уменьшаем до 600
$size = getimagesize ( $all_files[$x] );
if ($size[0]>600)exec('convert ' . $all_files[$x] . ' -resize 600 -strip ' . $all_files[$x]);
}
}
?>