MongoConfig.php配置文件Table.php(mongodb操作數據庫類文件)

Config.php配置文件復制代碼 代碼如下:<?phprequire_once 'Zend/Exception.php';class Hrs_Mongo_Config{ const VERSION " /> 麻豆影视在线直播观看免费 ,全身无赤裸裸美女网站,久久久免费热线精品频

天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

mongo Table類文件 獲取MongoCursor(游標)的實現方法分析

MongoCursor Object
游標類

Mongo
Config.php配置文件
Table.php(mongodb操作數據庫類文件)

Config.php配置文件
復制代碼 代碼如下:
<?php
require_once 'Zend/Exception.php';
class Hrs_Mongo_Config
{
    const VERSION = '1.7.0';
    const DEFAULT_HOST = 'localhost';
    const DEFAULT_PORT = 27017;
    private static $host = self::DEFAULT_HOST ;
    private static $port = self::DEFAULT_PORT ;
    private static $options = array(
            'connect' => true,
            'timeout' => 30,
            //'replicaSet' => '' //If this is given, the master will be determined by using the ismaster database command on the seeds
    );
    public static $conn = '';
    public static $defaultDb = '';
    public static $linkStatus = '';
    public static function set($server = 'mongodb://localhost:27017', $options = array('connect' => true)) {
        if(!$server){
            $url = 'mongodb://'.self::$host.':'.self::$port;
        }
        if(is_array($server)){
            if(isset($server['host'])){
                self::$host = $server['host'];
            }
            if(isset($server['port'])){
                self::$port = $server['port'];
            }
            if(isset($server['user']) && isset($server['pass'])){
                $url = 'mongodb://'.$server['user'].':'.$server['pass'].'@'.self::$host.':'.self::$port;
            }else{
                $url = 'mongodb://'.self::$host.':'.self::$port;
            }
        }
        if(is_array($options)){
            foreach (self::$options as $o_k=>$o_v){
                if(isset($options[$o_k]))
                    self::$options[$o_k] = $o_v;
            }
        }
        try{                       
            self::$conn = new Mongo($url, self::$options);
            self::$linkStatus = 'success';
        }catch (Exception $e){
            self::$linkStatus = 'failed';
        }
        if(isset($server['database'])){
            self::selectDB($server['database']);
        }
    }
    public static function selectDB($database){
        if($database){
            try {
                if(self::$linkStatus=='success')
                    self::$defaultDb = self::$conn->selectDB($database);
                return self::$defaultDb;
            }
            catch(InvalidArgumentException $e) {
                throw new Zend_Exception('Mongodb數據庫名稱不正確');
            }
        }else{
            throw new Zend_Exception('Mongodb數據庫名稱不能為空');
        }
    }
}

Table.php(mongodb操作數據庫類文件)
復制代碼 代碼如下:
<?php
require_once 'Hrs/Mongo/Config.php';
abstract class Hrs_Mongo_Table
{
    protected $_db = '';
    protected $_name = '';
    protected $_data = array();
    protected $c_options = array(
            'fsync'=>true,
            'safe'=>true
    );
    protected $u_options = array(
    //'upsert'=>false,
            'multiple'=>true,
            'fsync'=>true,
            'safe'=>true
    );
    /*
     protected $r_options = array(
     );*/
    protected $d_options = array(
            'fsync'=>true,
            'justOne'=>false,
            'safe'=>true
    );
    protected function _setAdapter($database=''){
        if(!$database)
            throw new Zend_Exception('Mongodb數據庫名稱不能為空');
        Hrs_Mongo_Config::selectDB($database);
    }
    public function __construct() {
        if(Hrs_Mongo_Config::$conn instanceof Mongo){
            $name = $this->_name;
            $defDb = Hrs_Mongo_Config::$defaultDb;
            $this->_db = $defDb->$name;
        }else{
            throw new Zend_Exception('Mongodb服務器連接失敗');
        }
    }
    public function insert($data){
        if(!$this->testLink()) return false;
        $ret = $this->_db->insert($data, $this->c_options);
        return $ret;
    }
    public function update($data, $where){
        if(!$this->testLink()) return false;
        return $this->_db->update($where, $data, $this->u_options);
    }
    public function find($where=array(),$limit=0){
        if($this->testLink()) {
            if($limit>0){
                $this->_data = $where ? $this->_db->find($where)->limit($limit)->snapshot() : $this->_db->find()->limit($limit)->snapshot();
            }else{
                $this->_data = $where ? $this->_db->find($where)->limit($limit)->snapshot() : $this->_db->find()->limit($limit)->snapshot();
            }
        }
        return $this;
    }
    //find cursor
    /*
     * 獲取游標對象
     */
    public function look($where=array(),$fields=array()){
        if($this->testLink()) {
            if($fields){
                return $where ? $this->_db->find($where,$fields): $this->_db->find()->fields($fields);
            }else{
                return $where ? $this->_db->find($where) : $this->_db->find();
            }
        }
        return false;
    }
    public function delete($where){
        if(!$this->testLink()) return false;
        return $this->_db->remove($where, $this->d_options);
    }
    public function dropMe(){
        if(!$this->testLink()) return false;
        return $this->_db->drop();
    }
    public function __toString(){
        return $this->_data;
    }
    public function toArray(){
        $tmpData = array();
        foreach($this->_data as $id=>$row){
            $one_row = array();
            foreach($row as $key=>$col){
                $one_row[$key] = $col;
            }
            $one_row['_id'] = $id;
            $tmpData[] = $one_row;
        }
        return $tmpData;
    }
    protected function testLink(){
        return Hrs_Mongo_Config::$linkStatus == 'success' ? true :false;
    }
}

要點注意!!!
第一種方法
復制代碼 代碼如下:
    //find cursor
    /*
     * 獲取游標對象
     */
    public function look($where=array(),$fields=array()){
        if($this->testLink()) {
            if($fields){
                return $where ? $this->_db->find($where,$fields): $this->_db->find()->fields($fields);
            }else{
                return $where ? $this->_db->find($where) : $this->_db->find();
            }
        }
        return false;
    }

第二種方法
復制代碼 代碼如下:
    public function find($where=array(),$field=array()){
        if($this->testLink()) {
            $this->_data = $this->_db->find($where,$field)->sort(array("_id" => -1));
        }
        return $this;
    }

復制代碼 代碼如下:
    /*
     * 獲取游標對象
     */
    public function getCursor(){
     return $this->_data;
    }

第二種需要的是find得到的不是數組
find($where)->getCursor();是MongoCursor Object

注意注意
find()返回的是當前對象
toArray()方法是把當前對象轉換為數組
getCursor()方法是把當前對象轉換為MongoCursor Object(游標對象)

php技術mongo Table類文件 獲取MongoCursor(游標)的實現方法分析,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 色www精品视频在线观看 | 后入式狂顶免费视频 | 成人国产精品视频频 | 亚洲成色爱我久久 | 漂亮的保姆6在线观看中文 漂亮的保姆5电影免费观看完整版中文 | 菠萝视频高清版在线观看 | 国精产品一区二区三区四区糖心 | chinese耄耋70老太性 | 久久88综合| 欧美精品一区二区三区视频 | 8X拨牐拨牐X8免费视频8 | 羞羞麻豆国产精品1区2区3区 | 嫩草影院成人 | 4k岛国精品午夜高清在线观看 | 精品国产乱码久久久久久人妻 | 国产精品国产三级国产AV麻豆 | 亚洲精品久久YY5099 | 色婷婷粉嫩AV精品综合在线 | 菠萝菠萝蜜视频在线看1 | 欧美日韩一区二区三区四区 | 国产 交换 丝雨 巅峰 | 久久久无码精品亚洲A片猫咪 | 大屁股国产白浆一二区 | 久久本道久久综合伊人 | 欧美末成年videos在线 | 91国偷自产一区二区三区 | 免费观看成人毛片 | 人成片在线观看亚洲无遮拦 | 亚洲AV久久无码精品热九九 | 欧美一区二区日韩一区二区 | 国产国拍亚洲精品av麻豆 | silk118中文字幕无删减 | 亚洲欧美偷拍视频一区 | 国产精品人妻无码久久久蜜桃臀 | 丫鬟粗大狠狠贯穿h | 成人网视频在线观看免费 | 97精品国偷拍自产在线 | 免费果冻传媒2021在线观看 | 视频网站入口在线看 | 寂寞夜晚视频高清观看免费 | xxxxxx视频 |