在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
<?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"))); */ ?> 完成MongoDB的安装 完成PHP对MongoDB的扩展,重启apache 开启MongoDB服务,就像mysql一样。 然后就可以用PHP操作MongoDB了。 下面是我自己今天学习的一些笔记: 首先要能对概念有个清晰的理解。 |
2022-07-18
2022-08-17
2022-11-06
2022-08-17
2022-08-15
请发表评论