MongoDB\GridFS\Bucket::rename()
定義
パラメーター
$id
: 混合- 名前を変更するファイルの
_id
。 $newFilename
: string- 新しい
filename
値。
エラーと例外
MongoDB\GridFS\Exception\FileNotFoundException
選択基準に一致するファイルが見つからなかった場合は、。
MongoDB\Driver\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"