您好,登錄后才能下訂單哦!
MongoDB GridFS 是一種用于存儲大型文件的方法,它將文件分割成多個小塊(chunks)并將這些塊存儲在 MongoDB 數據庫中。在 PHP 中使用 GridFS 進行文件存儲需要以下步驟:
composer
安裝:composer require mongodb/mongodb
<?php
require 'vendor/autoload.php';
$client = new MongoDB\Client("mongodb://localhost:27017");
$db = $client->selectDatabase('your_database_name');
<?php
$bucket = $db->selectGridFSBucket();
<?php
$filePath = '/path/to/your/file.txt';
$fileName = 'file.txt';
$stream = fopen($filePath, 'r');
$fileId = $bucket->uploadFromStream($fileName, $stream);
fclose($stream);
echo "File uploaded with ID: " . $fileId . "\n";
<?php
$fileId = 'your_file_id'; // 從上面的示例中獲取
$outputFilePath = '/path/to/output/file.txt';
$stream = fopen($outputFilePath, 'w');
$bucket->downloadToStream($fileId, $stream);
fclose($stream);
echo "File downloaded to: " . $outputFilePath . "\n";
<?php
$fileId = 'your_file_id'; // 從上面的示例中獲取
$bucket->delete($fileId);
echo "File deleted with ID: " . $fileId . "\n";
通過以上步驟,您可以在 PHP 中使用 MongoDB GridFS 進行文件存儲。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。