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 (空($flag['tag']))
{
$flag['tag'] = 'デフォルト'; }
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 = 新しい NewMongodb($mongo_server) ;
$NewMongodb_arr[$flag['tag']] = $mongo;
return $mongo;
}
}
/**
* コンストラクター
* 複数の mongo_servers の受け渡しをサポート (1. サーバーに問題がある場合は他のサーバーに接続する 2. クエリを異なるサーバーに自動的に均等に分散する)
*
* パラメーター:
* $mongo_server: 配列または文字列 - array(" 127.0.0.1:1111", "127.0.0.1:2222")-"127.0.0.1:1111"
* $connect: mongo オブジェクトの初期化時に接続するかどうか、デフォルトの接続
* $auto_balance: ロードを自動的に行うかどうかバランス調整、デフォルトは
*
* 戻り値:
* 成功: mongo オブジェクト
* 失敗: false
*/
public function __construct($mongo_server, $c ance=true)
{
if (is_array($mongo_server))
{
$mongo_server_num = count($mongo_server);
if ($mongo_server_num > 1 && $auto_balance)
{
$pri or_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 !=番号 - 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 サーバーに接続します
*
* パラメータ: なし
*
* 戻り値:
* 成功: true
* 失敗: false
*/
public function connect()
{
try {
$this->mongo-& gt;connect();
return true;
}
catch (MongoConnectionException **
* select db
*
* パラメータ: $dbname
*
* 戻り値: なし
*/
public function selectDb($dbname )
{t $ this- & gt = $ dbname
}
/**
*インデックスの作成: インデックスが存在する場合は、戻ります。 。
*
* パラメーター:
* $table_name: テーブル名
* $index: 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;
$ Mongo-& gt; $ table_name- & gt; を試してください。 true を返します。
}
catch (MongoCursorException $e)
insert($table_name, $record)
$record) >true));
trueを返す; false を返します;
} }
}
/ **
* レコードの挿入
*
* パラメーター:
* $table_name: テーブル名
* $record: レコード
*
* 戻り値:
* 成功: true
* 失敗: false
*/
パブリック関数 count($table_name)
{
$dbname = $this->curr_db_name;
Return $this->mongo->$dbname->$table_name->count () ;
}
/**
* テーブル内のレコード数をクエリします
*
* パラメータ:
* $table_name: テーブル名
*
* 戻り値: テーブル内のレコード数
*/
public function update($table_name, $condition, $newdata, $opti> {
} $dbname = $this->curr_db_name;
$options['safe '] = 1;
$dbname->$ テーブル_name->update ($condition, $newdata, $options);
return false;
} }
}
/*** 記録を削除します
*/
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->エラー= $e->getMessage();
return false;
} }
/**
* レコードの検索
*
* パラメータ:
* $table_name: テーブル名
* $query_condition: フィールドの検索条件
* $result_condition: クエリ結果の制限条件 - 制限/ソートなど
* $fields: フィールドの取得
*
* 戻り値:
* 成功: レコードセット
* 失敗: 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;
}
/**
* レコードの検索
*
* パラメーター:
* $table_name: テーブル名
* $condition: 検索条件
* $fields: フィールドの取得
*
* 戻り値:
* 成功: 1 つのレコード
* 失敗: 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( )
{
$this->error;
}
/*** NewMongodb クラス** 例:
* $mongo = newNewMongodb("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"));
* 1 つのレコードのみを削除します
* $mongo->remove("ttt", array("title"=>"bbb"), array("justOne "=>1 ));
* Mongo操作のエラー情報を取得します
* $mongo->getError();
*/
}
上記では、関連するコンテンツを含め、いくつかの簡単な例とともに mongodb PHP 操作クラスを紹介しています。PHP チュートリアルに興味のある友人に役立つことを願っています。