MongoDB
webman預設使用 jenssegers/mongodb 作為MongoDB組件,它是從laravel項目中抽離出來的,用法與laravel相同。
在使用jenssegers/mongodb
之前,必須先給php-cli
安裝MongoDB擴展。
使用命令
php -m | grep mongodb
檢查php-cli
是否安裝了MongoDB擴展。注意:即使你在php-fpm
安裝了MongoDB擴展,不代表你在php-cli
可以使用它,因為php-cli
和php-fpm
是不同的應用程式,可能使用的是不同的php.ini
配置。使用命令php --ini
來查看你的php-cli
使用的是哪個php.ini
配置文件。
安裝
PHP>7.2時
composer require -W illuminate/database jenssegers/mongodb ^3.8.0
PHP=7.2時
composer require -W illuminate/database jenssegers/mongodb ^3.7.0
安裝後需要restart重啟(reload無效)
配置
在 config/database.php
裡增加 mongodb
connection, 類似如下:
return [
'default' => 'mysql',
'connections' => [
...這裡省略了其他配置...
'mongodb' => [
'driver' => 'mongodb',
'host' => '127.0.0.1',
'port' => 27017,
'database' => 'test',
'username' => null,
'password' => null,
'options' => [
// here you can pass more settings to the Mongo Driver Manager
// see https://www.php.net/manual/en/mongodb-driver-manager.construct.php under "Uri Options" for a list of complete parameters that you can use
'appname' => 'homestead'
],
],
],
];
示例
<?php
namespace app\controller;
use support\Request;
use support\Db;
class UserController
{
public function db(Request $request)
{
Db::connection('mongodb')->collection('test')->insert([1,2,3]);
return json(Db::connection('mongodb')->collection('test')->get());
}
}