1

给定路径 /books/Aaronovitch, Ben/Rivers of London/9780575097568,我如何使用 PHP 重命名实际文件夹名称以删除空格?

4

3 回答 3

1

您可以尝试以下方法

echo renameRecrisive(__DIR__, "xx_x/yyy yyy/zz z/fff");

输出

 /public_html/www/stac/xx_x/yyy_yyy/zz_z

功能

/**
 * 
 * @param string $path Current path ending with a slash 
 * @param string $pathname Path you cant to rename
 * @param string $sep Optional Seprator
 */
function renameRecrisive($path, $pathname, $sep = "_") {
    $pathSplit = array_filter(explode("/", $pathname));
    $dir = $path;
    while ( $next = array_shift($pathSplit) ) {
        $current = $dir . "/" . $next;
        if (! is_dir($current)) {
            break;
        }
        if (preg_match('/\s/', $next)) {
            $newName = str_replace(" ", $sep, $next);
            rename($current, $dir . "/" . $newName);
            $dir .= "/" . $newName;
        } else {
            $dir .= "/" . $next;
        }
    }

    return $dir ;
}
于 2012-10-13T00:54:19.970 回答
0

php函数str_replace:

$newPath = str_replace(' ', '', $path);

然后使用重命名功能。

rename($path, $newPath);
于 2012-10-13T00:05:17.913 回答
0

这将遍历层次结构的每个级别,如果每个组件包含空格,则重命名它。

$patharray = split('/', $path);
$newpatharray = str_replace(' ', '', $patharray);

$oldpath = $patharray[0];
$newpath = $newpatharray[0];
$i = 0;

while (true) {
  if ($patharray[$i] != $newpatharray[$i]) {
    rename($oldpath, $newpath);
  }
  $i++;
  if ($i >= count($patharray) {
    break;
  }
  $oldpath .= "/".$patharray[$i];
  $newpath .= "/".$newpatharray[$i];
}
于 2012-10-13T01:22:47.617 回答