{
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
$n=0
while (($file = readdir($dh)) !== false) {
if ( $file == '.' or $file =='..' or $file=='.svn')
{
continue
}
echo md5_file($dir.$file)//计算每个文件md5值 echo '<br />'
if (is_dir ($dir.$file))
{
file_read_all ($dir.$file.'/')
}
}
}
closedir($dh)
}
}
$filename= md5(time().rand(0,9).$_FILES["filedata"]["name"]).'.'.pathinfo($_FILES["filedata"]["name"],PATHINFO_EXTENSION)欢迎分享,转载请注明来源:内存溢出
评论列表(0条)