php mongodb 작업 클래스 는 몇 가지 간단 한 예 를 가지 고 있 습 니 다.
핵심 코드:
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;
}
}
/**
*
* mongo_server(1. server 2. server)
*
* :
* $mongo_server: -array("127.0.0.1:1111", "127.0.0.1:2222")-"127.0.0.1:1111"
* $connect: mongo ,
* $auto_balance: ,
*
* :
* :mongo object
* :false
*/
public function __construct($mongo_server, $connect=true, $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;
}
}
/**
* NewMongodb server
*
* :
*
* :
* :true
* :false
*/
public function connect()
{
try {
$this->mongo->connect();
return true;
}
catch (MongoConnectionException $e)
{
$this->error = $e->getMessage();
return false;
}
}
/**
* select db
*
* :$dbname
*
* :
*/
public function selectDb($dbname)
{
$this->curr_db_name = $dbname;
}
/**
* : , 。
*
* :
* $table_name:
* $index: -array("id"=>1)- id
* $index_param: -
*
* :
* :true
* :false
*/
public function ensureIndex($table_name, $index, $index_param=array())
{
$dbname = $this->curr_db_name;
$index_param['safe'] = 1;
try {
$this->mongo->$dbname->$table_name->ensureIndex($index, $index_param);
return true;
}
catch (MongoCursorException $e)
{
$this->error = $e->getMessage();
return false;
}
}
/**
*
*
* :
* $table_name:
* $record:
*
* :
* :true
* :false
*/
public function insert($table_name, $record)
{
$dbname = $this->curr_db_name;
try {
$this->mongo->$dbname->$table_name->insert($record, array('safe'=>true));
return true;
}
catch (MongoCursorException $e)
{
$this->error = $e->getMessage();
return false;
}
}
/**
*
*
* :
* $table_name:
*
* :
*/
public function count($table_name)
{
$dbname = $this->curr_db_name;
return $this->mongo->$dbname->$table_name->count();
}
/**
*
*
* :
* $table_name:
* $condition:
* $newdata:
* $options: -upsert/multiple
*
* :
* :true
* :false
*/
public function update($table_name, $condition, $newdata, $options=array())
{
$dbname = $this->curr_db_name;
$options['safe'] = 1;
if (!isset($options['multiple']))
{
$options['multiple'] = 0; }
try {
$this->mongo->$dbname->$table_name->update($condition, $newdata, $options);
return true;
}
catch (MongoCursorException $e)
{
$this->error = $e->getMessage();
return false;
}
}
/**
*
*
* :
* $table_name:
* $condition:
* $options: -justOne
*
* :
* :true
* :false
*/
public function remove($table_name, $condition, $options=array())
{
$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;
} }
/**
*
*
* :
* $table_name:
* $query_condition:
* $result_condition: -limit/sort
* $fields:
*
* :
* :
* :false
*/
public function find($table_name, $query_condition, $result_condition=array(), $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;
}
/**
*
*
* :
* $table_name:
* $condition:
* $fields:
*
* :
* :
* :false
*/
public function findOne($table_name, $condition, $fields=array())
{
$dbname = $this->curr_db_name;
return $this->mongo->$dbname->$table_name->findOne($condition, $fields);
}
/**
*
*
* :
*
* :
*/
public function getError()
{
return $this->error;
}
/*** NewMongodb ** examples:
* $mongo = new NewMongodb("127.0.0.1:11223");
* $mongo->selectDb("test_db");
*
* $mongo->ensureIndex("test_table", array("id"=>1), array('unique'=>true));
*
* $mongo->count("test_table");
*
* $mongo->insert("test_table", array("id"=>2, "title"=>"asdqw"));
*
* $mongo->update("test_table", array("id"=>1),array("id"=>1,"title"=>"bbb"));
* - , - set
* $mongo->update("test_table", array("id"=>1),array("id"=>1,"title"=>"bbb"),array("upsert"=>1));
*
* $mongo->find("c", array("title"=>"asdqw"), array("start"=>2,"limit"=>2,"sort"=>array("id"=>1)))
*
* $mongo->findOne("$mongo->findOne("ttt", array("id"=>1))", array("id"=>1));
*
* $mongo->remove("ttt", array("title"=>"bbb"));
*
* $mongo->remove("ttt", array("title"=>"bbb"), array("justOne"=>1));
* Mongo
* $mongo->getError();
*/
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.