MongoDB\GridFS\Bucket::rename()
定义
参数
$id
:混合- 要重命名的文件的
_id
。 $newFilename
: 细绳- 新的
filename
值。
错误/异常
MongoDB\GridFS\Exception\FileNotFoundException
如果未找到符合选择条件的文件。
MongoDB\ 驱动程序\Exception\RuntimeException 对于扩展级别的其他错误(例如连接错误)。
示例
$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"