Docs Menu
Docs Home
/ / /
PHP ライブラリ マニュアル
/ /

MongoDB\GridFS\Bucket::rename()

項目一覧

  • 定義
  • パラメーター
  • エラーと例外
MongoDB\GridFS\Bucket::rename()

で GridFS ファイルを選択し、_id を変更します。filename

function rename($id, string $newFilename): void
$id : 混合
名前を変更するファイルの_id
$newFilename : string
新しいfilename値。

MongoDB\GridFS\Exception\FileNotFoundException 選択基準に一致するファイルが見つからなかった場合は、。

MongoDB\Driver\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"

戻る

registerグローバルストリーム ラッパーエイリアス()