zoukankan      html  css  js  c++  java
  • PHP操作MongoDB

    <?php
    error_reporting(7);

    $conn = new Mongo();

    $db = $conn->PHPDataBase;
    $collection = $db->PHPCollection;


    /*-----------------------------
    * 删除
    *-----------------------------
    $collection->remove(array("name" => "xixi111"));
    */

    /*------------------------------
    * 插入
    *------------------------------
    for($i = 0;$i <= 50;$i++) {
    $data = array("name" => "xixi".$i,"email" => "673048143_".$i."@qq.com","age" => $i*1+20);
    $collection->insert($data);
    }
    */

    /*-------------------------------
    * 查找
    *-------------------------------
    $res = $collection->find(array("age" => array('$gt' => 25,'$lt' => 40)),array("name" => true));

    foreach($res as $v) {
    print_r($v);
    }
    */

    /*-------------------------------
    * 更新
    *-------------------------------
    $collection->update(array("age" =>22),array('$set' => array("name" => "demoxixi")));
    */
    ?>

  • 相关阅读:
    软件工程——股票利润
    软件工程——爬楼梯
    总结
    团队4
    团队答辩
    团队3
    软工2
    团队合作(1)
    软件工程第二次作业
    软件工程第一次作业(2)
  • 原文地址:https://www.cnblogs.com/lixiuran/p/3296321.html
Copyright © 2011-2022 走看看