モンDB PHP7
PHP7 MongDB のインストールと使用法
このチュートリアルは PHP7 環境にのみ適しています。PHP5 環境を使用している場合は、PHP MongDB のインストールと使用法を参照してください。
PHP7 Mongdb 拡張機能のインストール
pecl コマンドを使用してインストールします。
$ /usr/local/php7/bin/pecl install mongodb
実行が成功すると、次の結果が出力されます:
…… Build process completed successfully Installing '/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so' install ok: channel://pecl.php.net/mongodb-1.1.7 configuration option "php_ini" is not set to php.ini location You should add "extension=mongodb.so" to php.ini
次に、php.ini ファイルを開いて、extension=mongodb.so を追加します。 設定。
以下のコマンドを直接実行して追加することもできます。
$ echo "extension=mongodb.so" >> `/usr/local/php7/bin/php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
注: 上記で実行したコマンドでは、php7 のインストールディレクトリは /usr/local/php7/ です。他のディレクトリにインストールする場合は、それに応じて pecl コマンドと php コマンドのパスを変更する必要があります。
Mongodb
PHP7 を使用して MongoDB に接続します。 構文は次のとおりです:
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
データの挿入
「php中文网」という名前のデータをテスト データベースの php コレクションに挿入します。
<?php $bulk = new MongoDB\Driver\BulkWrite; $document = ['_id' => new MongoDB\BSON\ObjectID, 'name' => 'php中文网']; $_id= $bulk->insert($document); var_dump($_id); $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000); $result = $manager->executeBulkWrite('test.php', $bulk, $writeConcern); ?>
データの読み取り
ここでは、3 つの URL データをテスト データベースのサイト コレクションに挿入し、読み取りと反復処理を行います:
<?php $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); // 插入数据 $bulk = new MongoDB\Driver\BulkWrite; $bulk->insert(['x' => 1, 'name'=>'php中文网', 'url' => 'http://www.php.cn']); $bulk->insert(['x' => 2, 'name'=>'Google', 'url' => 'http://www.google.com']); $bulk->insert(['x' => 3, 'name'=>'taobao', 'url' => 'http://www.taobao.com']); $manager->executeBulkWrite('test.sites', $bulk); $filter = ['x' => ['$gt' => 1]]; $options = [ 'projection' => ['_id' => 0], 'sort' => ['x' => -1], ]; // 查询数据 $query = new MongoDB\Driver\Query($filter, $options); $cursor = $manager->executeQuery('test.sites', $query); foreach ($cursor as $document) { print_r($document); } ?>
出力結果は次のとおりです:
stdClass Object ( [x] => 3 [name] => taobao [url] => http://www.taobao.com ) stdClass Object ( [x] => 2 [name] => Google [url] => http://www.google.com )
データの更新
次に、テストデータベース x が 2 のサイトコレクション内のデータ:
<?php $bulk = new MongoDB\Driver\BulkWrite; $bulk->update( ['x' => 2], ['$set' => ['name' => 'php工具', 'url' => 'tool.php.cn']], ['multi' => false, 'upsert' => false] ); $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000); $result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern); ?>
次に、「db.sites.find()」コマンドを使用して、データの変更を確認します。x が 2 のデータが php ツールになりました。
データの削除次の例では、x が 1 と x が 2 であるデータを削除します。制限パラメータの違いに注意してください:<?php $bulk = new MongoDB\Driver\BulkWrite; $bulk->delete(['x' => 1], ['limit' => 1]); // limit 为 1 时,删除第一条匹配数据 $bulk->delete(['x' => 2], ['limit' => 0]); // limit 为 0 时,删除所有匹配数据 $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); $writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000); $result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern); ?>その他の使用方法については、次を参照してください:
http://php. net/manual/en/book.mongodb.php 。