码迷,mamicode.com
首页 > 数据库 > 详细

安装mongodb插件

时间:2017-11-05 17:57:35      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:class   filter   app   php-fpm   安装   测试   test   get   highlight   

1、安装mngodb模块

wget http://pecl.php.net/get/mongodb-1.2.4.tgz
tar zxf mongodb-1.2.4.tgz
cd mongodb-1.2.4
/application/php/bin/phpize 
./configure --with-php-config=/application/php/bin/php-config
make
make install
  Installing shared extensions:     /application/php-7.1.7/lib/php/extensions/no-debug-non-zts-20160303/

2、检查模块是否存在

cd /application/php-7.1.7/lib/php/extensions/no-debug-non-zts-20160303/
ls mongodb.so 
  mongodb.so

3、修改 php.ini

vim /application/php/lib/php.ini
 ...
 extension=redis.so    #添加此行
 ...

4、重启php-fpm

5、测试连接mongodb,访问页面正常,表示连接成功

<?php
$manager = new MongoDB\Driver\Manager("mongodb://127.0.0.1:27017");
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert([‘x‘ => 1, ‘class‘=>‘toefl‘, ‘num‘ => ‘18‘]);
$bulk->insert([‘x‘ => 2, ‘class‘=>‘ielts‘, ‘num‘ => ‘26‘]);
$bulk->insert([‘x‘ => 3, ‘class‘=>‘sat‘, ‘num‘ => ‘35‘]);
$manager->executeBulkWrite(‘test.log‘, $bulk);
$filter = [‘x‘ => [‘$gt‘ => 1]];
$options = [
    ‘projection‘ => [‘_id‘ => 0],
    ‘sort‘ => [‘x‘ => -1],
];
$query = new MongoDB\Driver\Query($filter, $options);
$cursor = $manager->executeQuery(‘test.log‘, $query);
foreach ($cursor as $document) {
    print_r($document);
}

  

 

 

 

  

 

安装mongodb插件

标签:class   filter   app   php-fpm   安装   测试   test   get   highlight   

原文地址:http://www.cnblogs.com/sellsa/p/7787991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!