您现在的位置是:首页 > Mysql

李清波 2015-09-20 Mysql 2444 复制当前网址

用一个函数解决ThinkPHP 连接 MySQL与 MongoDB

用一个函数解决ThinkPHP 连接 MySQL与 MongoDB,请注意M函数

1. config.php设置

  

//.配置MySQL数据库
'DB_MYSQL' => array(
  'db_type'=>'mysqli',
  'db_user'=>'用户名',
  'db_pwd'=>'密码',
  'db_host'=>'127.0.0.1',
  'db_port'=>'3306',
  'db_name'=>'数据库名',
  'db_charset'=>'utf8',
),

  //.配置MongoDB数据库
'DB_MONGO' => array(
  'db_type'=>'mongo',
  'db_user'=>'用户名',
  'db_pwd'=>'密码',
  'db_host'=>'localhost',
  'db_port'=>'27017',
  'db_name'=>'数据库名',
),

  


复制代码2. 写一个M函数,实现数据库的调用

//. 调用MONGO和MYSQL数据库
protected function M( $table_name = '', $db_type = 'DB_MYSQL' ){
  $db_config = C($db_type);
  $db_prefix = C('DB_PREFIX');
  if( $table_name == '' ){ return false; }
  if( $db_type == 'DB_MYSQL' ){
      return M( $table_name , $db_prefix , $db_config );
  }else if( $db_type == 'DB_MONGO' ){
      return M( '\Think\Model\MongoModel:' . $table_name , $db_prefix , $db_config );
  }else{
      return false;
  }
}//;



复制代码3. 调用M函数的实例

//. 调用自定义的M函数
  //. 连接MySQL数据库
  echo 'Mysql:';
  $list = $this->M('user','DB_MYSQL')->select();
  dump( $list );
  //. 连接MongoDB数据库
  echo 'Mongo:';
  $list = $this->M('user','DB_MONGO')->select();
  dump( $list );

  


以上文章来源于thinkphp官网

复制代码希望对您有所帮助!!!


文章来源:https://www.liqingbo.com/blog-414.html

评论