-2

我的网站上有一个包含 5000 张图片的目录。我可以在 PHP 中做什么来用完全随机的名称(例如 ri32rif293jf32f3f 或其他)重命名目录中的所有图像?

我需要知道这一点,这样我就可以每隔几个月随机重命名它们。

4

2 回答 2

1

这很简单:

  1. 您自己创建一个可以生成随机文件名的函数。
  2. 您将获得该目录中的文件列表。
  3. 您创建第二个列表,每个旧列表的每个文件都有一个条目,该条目带有使用 1.) 中的函数生成的新名称,并且不存在于 2.) 的列表中,并且到目前为止还不是3.) 的清单。
  4. 将 2.) 的文件重命名为新名称 3.)

完毕。将所有这些包装到它自己的函数中,这样您就可以每隔几个月轻松调用它。

于 2012-12-24T03:05:55.793 回答
1
function random($numchars,$digits,$small,$capital,$splchr)
{
$dig = "0123456789";

$sml = "abcdefghijklmnopqrstuvwxyz";

$spl = "!@#$%*";

$cap = "ABCDEFGHJKLMNOPQRSTUVWXYZ";

if($digits == 1)
{
    $str .= $dig;
}

if($small == 1)
{
    $str .= $sml;
}

if($capital == 1)
{
    $str .= $cap;
}

if($splchr == 1)
{
    $str .= $spl;
}

for($j=0; $j < $numchars; $j++)
{
    $randomized .= $str{ rand() % strlen($str) };
}

return $randomized;
}

    $source = "/source direcotry/";
    $destination = "/destination directory/";
    function getDirectory( $source, $destination, $level=0)
    {
    $count =1;

       $ignore = array( 'cgi-bin', '.', '..' );
       if($handle = opendir($source))
       { 
        //one by one reading a file
        while(false !== ($file = readdir($handle))) 
        {
           if( is_dir( "$source/$file" ) )
              if (!file_exists($destination.$file))
                 mkdir("$destination$file", 0700);
           if( !in_array( $file, $ignore ) )
           {
              if( is_dir( "$source/$file" ) )
              {
                getDirectory( "$source$file/", "$destination$file/", ($level+1));
              }
              else 
              { 
                  $rand = random(16,1,1,1,1);
                  $srcfile = file_get_contents($source.$file);
                  $extfile=substr($file, strrpos($file, "."));      
                  file_put_contents($destination.$rand.$extfile , $srcfile);
              }
           }
        }
        $total[$level] = $total + intval($count-1);
        echo "<br/><b> $destination  ---- ".intval($count-1)."</b><br/><br/>";
      }
      closedir($handle); 
    }
    //calling getDirectory function for repeat the for all sub folders.
    getDirectory( $source , $destination, 0);  
于 2012-12-24T03:27:36.787 回答