• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • ZipArchive::renameName()

    (PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.5.0)

    Renames an entry defined by its name

    说明

    ZipArchive::renameName(string $name,string $newname): bool

    Renames an entry defined by its name.

    参数

    $name

    Name of the entry to rename.

    $newname

    New name.

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    范例

    Rename one entry

    <?php
    $zip = new ZipArchive;
    $res = $zip->open('test.zip');
    if ($res === TRUE) {
        $zip->renameName('currentname.txt','newname.txt');
        $zip->close();
    } else {
        echo 'failed, code:' . $res;
    }
    ?>
    
    When you rename a file in an archive using the function above and the target file name already exists, the function will return FALSE as a result.