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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。