douyuan6490 2016-08-18 19:21
浏览 36
已采纳

PHP MongoClient发现无法正常工作

I am new on MongoDB, and using it on windows. I created an Database, then created a Collection and inserted record there, I am checking by GUI tool RoboMongo, it is showing on GUI tool, but when i get it by code, it shows nothing. Following is code, please guide me what to do.

$m = new MongoClient('mongodb://root:root123@localhost');
$db = $m->selectDB('db_name');
$collection_name = 'collection_name';
$db->createCollection( $collection_name );
$get_collection = new MongoCollection( $db, $collection_name );
$data = array(
   '_id' => '1_record',
   'name' => 'Majid Ali',
   'designation' => 'Developer'
);
$get_collection->insert( $data );
$find = $get_collection->find();
print_r( $find );
  • 写回答

1条回答 默认 最新

  • duanbanzhi4419 2016-08-18 19:37
    关注

    have you any error? But i think the best way to select the collection is this:

    try{
        // Connecting to server
        $m = new MongoClient('mongodb://root:root123@localhost');
    }catch(MongoConnectionException $connectionException){
        print $connectionException;
        exit;
    }
    try{
        // Getting MongoCollection
    
        $db = $m->db_name;
    }catch(MongoException $mongoException){
        print $mongoException;
        exit;
    }
    $collection_name = 'collection_name';
    $db->createCollection( $collection_name );
    
    //Selected the Collection
    $get_collection= $db->collection_name;
    
    $data = array(
       '_id' => '1_record',
       'name' => 'Majid Ali',
       'designation' => 'Developer'
    );
    try{
        // Inserting data into students collection
    
        $get_collection->insert( $data );
    }catch(MongoCursorException $mongoCursorException){
        echo $mongoCursorException;
        exit;
    } 
    $find = $get_collection->find();
    $array = iterator_to_array($find );
    print_r( $array  );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集