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

    <?php
    header("Content-type:text/html;charset=utf-8");
    $m = new MongoClient(); // 连接
    $db = $m->test; // 获取名称为 "test" 的数据库
    /*集合创建成功
    $collection = $db->createCollection("runoob");
    echo "集合创建成功";*/
    
    
    /*插入
    $collection = $db->runoob; // 选择集合
    $document = array( 
    "title" => "MongoDB", 
    "description" => "database", 
    "likes" => 100,
    "url" => "http://www.runoob.com/mongodb/",
    "by", "菜鸟教程"
    );
    $collection->insert($document);
    echo "数据插入成功";*/
    
    /*查询
    $collection = $db->runoob; // 选择集合
    
    $cursor = $collection->find();
    // 迭代显示文档标题
    foreach ($cursor as $document) {
    echo $document["title"] . "
    ";
    }*/
    
    /*更新
    $collection = $db->runoob; // 选择集合
    // 更新文档
    $collection->update(array("title"=>"MongoDB"), array('$set'=>array("title"=>"MongoDB 教程")));
    // 显示更新后的文档
    $cursor = $collection->find();
    // 循环显示文档标题
    foreach ($cursor as $document) {
    echo $document["title"] . "
    ";
    }*/
    
    /*删除
    $collection = $db->runoob; // 选择集合
    $collection->remove(array("title"=>"MongoDB 教程"), array("justOne" => true));
    
    // 显示可用文档数据
    $cursor = $collection->find();
    foreach ($cursor as $document) {
    echo $document["title"] . "
    ";
    }*/
    
    ?>
  • 相关阅读:
    [hdu4436 str2int]后缀自动机SAM(或后缀数组SA)
    bytedance专题
    LSTM+CRF维特比解码过程
    spark core类梳理
    spark源码阅读---Utils.getCallSite
    python2.7官方文档阅读笔记
    cs224d---词向量表示
    cs231n---强化学习
    cs231n---生成模型
    Spring 2017 Assignments3
  • 原文地址:https://www.cnblogs.com/mracale/p/5715411.html
Copyright © 2011-2022 走看看