search
HomeBackend DevelopmentPHP Tutorialmongodb php operation class with a few simple examples

class NewMongodb {    
    private $mongo;    //NewMongodb连接
    private $curr_db_name;
    private $curr_table_name;
    private $error;
    public $config;
    public function getInstance($mongo_server, $flag=array())
    {
        static $NewMongodb_arr;
        if (empty($flag['tag']))
        {
            $flag['tag'] = 'default';          }
        if (isset($flag['force']) && $flag['force'] == true)
        {
            $mongo = new NewMongodb($mongo_server);
            if (empty($NewMongodb_arr[$flag['tag']]))
            {
                $NewMongodb_arr[$flag['tag']] = $mongo;
            }
            return $mongo;
        }
        else if (isset($NewMongodb_arr[$flag['tag']]) && is_resource($NewMongodb_arr[$flag['tag']]))
        {
            return $NewMongodb_arr[$flag['tag']];
        }
        else
        {
            $mongo = new NewMongodb($mongo_server);
            $NewMongodb_arr[$flag['tag']] = $mongo;
            return $mongo;
        }
    }
    /**
* Constructor
* Supports passing in multiple mongo_servers (1. Connect to other servers when one has a problem 2. Automatically distribute queries evenly to different servers)
*
* Parameters:
* $mongo_server: Array or string - array("127.0.0.1:1111", "127.0.0.1:2222")-"127.0.0.1:1111"
* $connect: Whether to connect when initializing the mongo object, the default connection
* $auto_balance: Whether to automatically do load balancing , the default is
*
* Return value:
* Success: mongo object
* Failure: false
*/
    public function __construct($mongo_server, $c $auto_balance=true)
    {
     if (is_array($mongo_server))
     {
      $mongo_server_num = count($mongo_server);
      if ($mongo_server_num > 1 && $auto_balance)
      {
       $prior_server_num = rand(1, $mongo_server_num);
       $rand_keys = array_rand($mongo_server,$mongo_server_num);
       $mongo_server_str = $mongo_server[$prior_server_num-1];
       foreach ($rand_keys as $key)
       {
        if ($key != $prior_server_num - 1)
        {
         $mongo_server_str .= ',' . $mongo_server[$key];
        }
       }
      }
      else
      {
       $mongo_server_str = implode(',', $mongo_server);
      }                  }
      else
      {
       $mongo_server_str = $mongo_server;
      }
      try {
       $this->mongo = new MongoClient($mongo_server, array('connect'=>$connect));
      }
      catch (MongoConnectionException $e)
      {
       $this->error = $e->getMessage();
       return false;
      }
    }
    
    /**
* Connect to NewMongodb server
*
* Parameters: None
*
* Return value:
* Success: true
* Failure: false
*/
    public function connect()
    {
        try {
            $this->mongo->connect();
            return true;
        }
                            catch (MongoConnectionException                                                                                                                         **
* select db
*
* Parameter: $dbname
*
* Return value: None
*/
public function selectDb($dbname )
{t $ this- & gt; curr_db_name = $ dbname;
}
/**
*Creating index: If the index exists, return.
*
* Parameters:
* $table_name: table name
* $index: Index-array("id"=>1) - Create an ascending index on the id field
* $index_param: Other conditions - whether it is a unique index, etc.
*
* Return value:
* Success: true
* Failure: false
*/
public function ensureIndex($table_name, $index, $index_param=array())
{
$dbname = $this->curr_db_name;
                                                                       using   $index_param['safe']              }
catch (MongoCursorException $e)
                                                          $this->error = $ insert($table_name, $record)
                                                                                                                                                                                $record) >true));
                                                                                                                                                             return true; return false;
} }
}
/**
* Insert record
*
* Parameters:
* $table_name: table name
* $record: record
*
* Return value:
* Success: true
* Failure: false
*/
Public function count($table_name)
{
$dbname = $this->curr_db_name;
Return $this->mongo->$dbname->$table_name->count() ;
}
/**
* * The number of records in the query table
* *
* Parameters:
* $table_name: table name
*
* Return value: The number of records in the table
*/
public function update($table_name, $condition, $newdata, $opti> {
} $dbname = $this->curr_db_name;
$options['safe'] = 1;
                                                                                                       ;$dbname->$ table_name->update ($condition, $newdata, $options); );
           return false;
} }
}   
    /*** Delete record
*/
    public function remove($table_name, $condition, $opti>    {
        $dbname = $this->curr_db_name;
        $options['safe'] = 1;
        try {
            $this->mongo->$dbname->$table_name->remove($condition, $options);
            return true;
        }
        catch (MongoCursorException $e)
        {
            $this->error = $e->getMessage();
            return false;
    }   }    
    /**
* Search for records
*
* Parameters:
* $table_name: table name
* $query_condition: field search conditions
* $result_condition: query result restriction conditions - limit/sort, etc.
* $fields: Get fields
*
* Return value:
* Success: record set
* Failure: false
*/
    public function find($table_name, $query_condition, $result_c $fields=array())
    {
        $dbname = $this->curr_db_name;
        $cursor = $this->mongo->$dbname->$table_name->find($query_condition, $fields);
        if (!empty($result_condition['start']))
        {
            $cursor->skip($result_condition['start']);
        }
        if (!empty($result_condition['limit']))
        {
            $cursor->limit($result_condition['limit']);
        }
        if (!empty($result_condition['sort']))
        {
            $cursor->sort($result_condition['sort']);
        }
        $result = array();
        try {
            while ($cursor->hasNext())
            {
                $result[] = $cursor->getNext();
            }
        }
        catch (MongoConnectionException $e)
        {
            $this->error = $e->getMessage();
            return false;
        }
        catch (MongoCursorTimeoutException $e)
        {
            $this->error = $e->getMessage();
            return false;
        }
        return $result;
    }    
    /**
* Find a record
*
* Parameters:
* $table_name: table name
* $condition: search condition
* $fields: get fields
*
* Return value:
* Success: one record
* Failure: false
*/
    public function findOne($table_name, $condition, $fields=array())
    {
        $dbname = $this->curr_db_name;
        return $this->mongo->$dbname->$table_name->findOne($condition, $fields);
    }    
    /**
* Get the current error message
*
* Parameters: None
*
* Return value: Current error message
*/
    public function getError()
    {
        return $this->error;
    }
/*** NewMongodb class** examples:
* $mongo = new NewMongodb("127.0.0.1:11223");
* $mongo->selectDb("test_db");
* Create index
* $mongo->ensureIndex ("test_table", array("id"=>1), array('unique'=>true));
* Get the records of the table
* $mongo->count("test_table");
* Insert record
* $mongo->insert("test_table", array("id"=>2, "title"=>"asdqw"));
* Update record
* $mongo->update( "test_table", array("id"=>1),array("id"=>1,"title"=>"bbb"));
* Update record - update if it exists, add if it does not exist -Equivalent to set
* $mongo->update("test_table", array("id"=>1),array("id"=>1,"title"=>"bbb"),array ("upsert"=>1));
* Find records
* $mongo->find("c", array("title"=>"asdqw"), array("start"=>2 ,"limit"=>2,"sort"=>array("id"=>1)))
* Find a record
* $mongo->findOne("$mongo->findOne(" ttt", array("id"=>1))", array("id"=>1));
* Delete record
* $mongo->remove("ttt", array("title" =>"bbb"));
* Delete only one record
* $mongo->remove("ttt", array("title"=>"bbb"), array("justOne"=>1 ));
* Get the error information of Mongo operation
* $mongo->getError();
*/
}

The above introduces the mongodb PHP operation class with a few simple examples, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you create and use an interface in PHP?How do you create and use an interface in PHP?Apr 30, 2025 pm 03:40 PM

The article explains how to create, implement, and use interfaces in PHP, focusing on their benefits for code organization and maintainability.

What is the difference between crypt() and password_hash()?What is the difference between crypt() and password_hash()?Apr 30, 2025 pm 03:39 PM

The article discusses the differences between crypt() and password_hash() in PHP for password hashing, focusing on their implementation, security, and suitability for modern web applications.

How can you prevent Cross-Site Scripting (XSS) in PHP?How can you prevent Cross-Site Scripting (XSS) in PHP?Apr 30, 2025 pm 03:38 PM

Article discusses preventing Cross-Site Scripting (XSS) in PHP through input validation, output encoding, and using tools like OWASP ESAPI and HTML Purifier.

What is autoloading in PHP?What is autoloading in PHP?Apr 30, 2025 pm 03:37 PM

Autoloading in PHP automatically loads class files when needed, improving performance by reducing memory use and enhancing code organization. Best practices include using PSR-4 and organizing code effectively.

What are PHP streams?What are PHP streams?Apr 30, 2025 pm 03:36 PM

PHP streams unify handling of resources like files, network sockets, and compression formats via a consistent API, abstracting complexity and enhancing code flexibility and efficiency.

What is the maximum size of a file that can be uploaded using PHP ?What is the maximum size of a file that can be uploaded using PHP ?Apr 30, 2025 pm 03:35 PM

The article discusses managing file upload sizes in PHP, focusing on the default limit of 2MB and how to increase it by modifying php.ini settings.

What is Nullable types in PHP ?What is Nullable types in PHP ?Apr 30, 2025 pm 03:34 PM

The article discusses nullable types in PHP, introduced in PHP 7.1, allowing variables or parameters to be either a specified type or null. It highlights benefits like improved readability, type safety, and explicit intent, and explains how to declar

What is the difference between the unset() and unlink() functions ?What is the difference between the unset() and unlink() functions ?Apr 30, 2025 pm 03:33 PM

The article discusses the differences between unset() and unlink() functions in programming, focusing on their purposes and use cases. Unset() removes variables from memory, while unlink() deletes files from the filesystem. Both are crucial for effec

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools