今天使用thinkPHP操作MongoDB发现跟用MysqL有很多不同的地方,在这里特别跟大家分享下.
暂时没用thinkPHP5一直还在用thinkPHP3.2.3觉得挺好用,MongoDB版本2和3均测试通过.
config.PHP
'DB_TYPE' => 'mongo',数据库类型
'DB_HOST' => '127.0.0.1',
'DB_NAME' => 'local',数据库名
'DB_USER' => '',用户名
'DB_PWD' => '',
'DB_PORT' => '27017',
'DB_CHARSET' => 'utf8',数据库编码
'DB_DEBUG' => ,数据库调试模式 开启后可以记录sql日志
IndexController.class.PHP
PHP
namespace Home\Controller;
IndexController
= D("Col"['name'] = '张雷帅哥'['reg'] = = ->add((
chaxun(='' = D("Col" = ->where(("name"=>)) ->(
xiugai(='' = D("Col"['reg'] = '20170310' = ->where(("name"=>)) ->save((
shan(='' = D("Col" = ->where(("_id"=>)) ->(
ColModel.class.PHP
PHP
namespace Home\Model;
ColModel
原文链接:https://www.f2er.com/thinkphp/403057.html