tp5(thinkPHP5)操作mongoDB数据库的方法详解
内容导读
收集整理的这篇技术教程文章主要介绍了tp5(thinkPHP5)操作mongoDB数据库的方法详解,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含1101字,纯文字阅读大概需要2分钟。
内容图文
这篇文章主要介绍了tp5(thinkPHP5)操作mongoDB数据库的方法,结合实例形式简单分析了mongoDB数据库及thinkPHP5连接、查询MongoDB数据库的基本操作技巧,需要的朋友可以参考下本文实例讲述了tp5(thinkPHP5)操作mongoDB数据库的方法。分享给大家供大家参考,具体如下:
1.通过composer安装
composer require mongodb/mongodb
2.使用
<?php/** * @author: jim * @date: 2017/11/17 */namespace appindexcontroller;use thinkController;use MongoDBDriverManager;use MongoDBCollection;class MongoTest extends Controller{ protected $mongoManager; protected $mongoCollection; public function __construct() { $this->mongoManager = new Manager($this->getUri()); $this->mongoCollection = new Collection($this->mongoManager, "mldn","dept"); } public function test() { // 读取一条数据 $data = $this->mongoCollection->findOne(); print_r($data); } protected function getUri() { return getenv('MONGODB_URI') ?: 'mongodb://127.0.0.1:27017'; }}
您可能感兴趣的文章:
PHP Class SoapClient not found解决方法的讲解
PHP Class SoapClient not found的解决方法
Lumen timezone 时区设置方法
以上就是tp5(thinkPHP5)操作mongoDB数据库的方法详解的详细内容,更多请关注Gxl网其它相关文章!
内容总结
以上是为您收集整理的tp5(thinkPHP5)操作mongoDB数据库的方法详解全部内容,希望文章能够帮你解决tp5(thinkPHP5)操作mongoDB数据库的方法详解所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。
内容备注
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。