雖然我很喜歡 Go 語言
但還是直覺認為用 PHP 會比較方便
不過網路上的文章大部份都是舊的 PHP Driver 寫法(class MongoClient)
故花點時間把它整理一下
1. 新的用法有分 Low, High Level,High Level 的 code 比較精簡,但兩個都要裝
2. High Level - https://github.com/mongodb/mongo-php-library
3. Low Level - https://github.com/mongodb/mongo-php-driver
4. 兩者都是官方 release 的(官方也有提供其他語言的 Library)
5. 我使用的版本 PHP 7.0.8, MongoDB 3.6
官方說明
High Level - Query
require 'vendor/autoload.php';
$connectStr = 'mongodb://user:password@localhost:27017/databaseName';
try {
$client = new MongoDB\Client($connectStr);
$collection = $client->databaseName->collectionName;
$records = $collection->find([]);
foreach ($records as $item) {
echo "_id = $item->_id \n";
}
} catch (MongoDB\Driver\Exception\ConnectionTimeoutException $e) {
echo $e->getMessage() . "\n";
}
High Level - Insert
require 'vendor/autoload.php';
$connectStr = 'mongodb://user:password@localhost:27017/databaseName';
try {
$client = new MongoDB\Client($connectStr);
$collection = $client->databaseName->collectionName;
$collection->insertOne(['b' => 'CCC']);
} catch (MongoDB\Driver\Exception\ConnectionTimeoutException $e) {
echo $e->getMessage() . "\n";
}
沒有留言:
張貼留言