MongoDB\GridFS\Bucket::delete()
定義
パラメーター
$id
: 混合- 削除するファイルの
_id
。
エラーと例外
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('filename', $stream); $bucket->delete($id);