Docs 菜单
Docs 主页
/ / /
PHP 库手册
/ /

MongoDB\GridFS\Bucket::rename()

在此页面上

  • 定义
  • 参数
  • 错误/异常
  • 示例
MongoDB\GridFS\Bucket::rename()

通过_id选择GridFS文件并更改其filename

function rename($id, string $newFilename): void
$id :混合
要重命名的文件的_id
$newFilename : 细绳
新的filename值。

MongoDB\GridFS\Exception\FileNotFoundException 如果未找到符合选择条件的文件。

MongoDB\ 驱动程序\Exception\RuntimeException 对于扩展级别的其他错误(例如连接错误)。

<?php
$bucket = (new MongoDB\Client)->test->selectGridFSBucket();
$stream = fopen('php://temp', 'w+b');
fwrite($stream, "foobar");
rewind($stream);
$id = $bucket->uploadFromStream('a', $stream);
$bucket->rename($id, 'b');
var_dump(stream_get_contents($bucket->openDownloadStreamByName('b')));

而输出将类似如下所示:

string(6) "foobar"

后退

registerGlobalStreamWrapperAlias()