Home Backend Development PHP Tutorial PHP mongodb operation class with a few simple examples

PHP mongodb operation class with a few simple examples

Dec 23, 2016 am 09:11 AM
mongodb

Script House has published several similar articles before, you can refer to them.

Core code:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

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();

  */

}

Copy after login


For more php mongodb operation classes with a few simple examples, please pay attention to the PHP Chinese website for related articles!

Statement of this Website
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

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the use of net4.0 What is the use of net4.0 May 10, 2024 am 01:09 AM

.NET 4.0 is used to create a variety of applications and it provides application developers with rich features including: object-oriented programming, flexibility, powerful architecture, cloud computing integration, performance optimization, extensive libraries, security, Scalability, data access, and mobile development support.

How to configure MongoDB automatic expansion on Debian How to configure MongoDB automatic expansion on Debian Apr 02, 2025 am 07:36 AM

This article introduces how to configure MongoDB on Debian system to achieve automatic expansion. The main steps include setting up the MongoDB replica set and disk space monitoring. 1. MongoDB installation First, make sure that MongoDB is installed on the Debian system. Install using the following command: sudoaptupdatesudoaptinstall-ymongodb-org 2. Configuring MongoDB replica set MongoDB replica set ensures high availability and data redundancy, which is the basis for achieving automatic capacity expansion. Start MongoDB service: sudosystemctlstartmongodsudosys

Use Composer to solve the dilemma of recommendation systems: andres-montanez/recommendations-bundle Use Composer to solve the dilemma of recommendation systems: andres-montanez/recommendations-bundle Apr 18, 2025 am 11:48 AM

When developing an e-commerce website, I encountered a difficult problem: how to provide users with personalized product recommendations. Initially, I tried some simple recommendation algorithms, but the results were not ideal, and user satisfaction was also affected. In order to improve the accuracy and efficiency of the recommendation system, I decided to adopt a more professional solution. Finally, I installed andres-montanez/recommendations-bundle through Composer, which not only solved my problem, but also greatly improved the performance of the recommendation system. You can learn composer through the following address:

How to ensure high availability of MongoDB on Debian How to ensure high availability of MongoDB on Debian Apr 02, 2025 am 07:21 AM

This article describes how to build a highly available MongoDB database on a Debian system. We will explore multiple ways to ensure data security and services continue to operate. Key strategy: ReplicaSet: ReplicaSet: Use replicasets to achieve data redundancy and automatic failover. When a master node fails, the replica set will automatically elect a new master node to ensure the continuous availability of the service. Data backup and recovery: Regularly use the mongodump command to backup the database and formulate effective recovery strategies to deal with the risk of data loss. Monitoring and Alarms: Deploy monitoring tools (such as Prometheus, Grafana) to monitor the running status of MongoDB in real time, and

Navicat's method to view MongoDB database password Navicat's method to view MongoDB database password Apr 08, 2025 pm 09:39 PM

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

What is the CentOS MongoDB backup strategy? What is the CentOS MongoDB backup strategy? Apr 14, 2025 pm 04:51 PM

Detailed explanation of MongoDB efficient backup strategy under CentOS system This article will introduce in detail the various strategies for implementing MongoDB backup on CentOS system to ensure data security and business continuity. We will cover manual backups, timed backups, automated script backups, and backup methods in Docker container environments, and provide best practices for backup file management. Manual backup: Use the mongodump command to perform manual full backup, for example: mongodump-hlocalhost:27017-u username-p password-d database name-o/backup directory This command will export the data and metadata of the specified database to the specified backup directory.

How to choose a database for GitLab on CentOS How to choose a database for GitLab on CentOS Apr 14, 2025 pm 04:48 PM

GitLab Database Deployment Guide on CentOS System Selecting the right database is a key step in successfully deploying GitLab. GitLab is compatible with a variety of databases, including MySQL, PostgreSQL, and MongoDB. This article will explain in detail how to select and configure these databases. Database selection recommendation MySQL: a widely used relational database management system (RDBMS), with stable performance and suitable for most GitLab deployment scenarios. PostgreSQL: Powerful open source RDBMS, supports complex queries and advanced features, suitable for handling large data sets. MongoDB: Popular NoSQL database, good at handling sea

How to encrypt data in Debian MongoDB How to encrypt data in Debian MongoDB Apr 12, 2025 pm 08:03 PM

Encrypting MongoDB database on a Debian system requires following the following steps: Step 1: Install MongoDB First, make sure your Debian system has MongoDB installed. If not, please refer to the official MongoDB document for installation: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-debian/Step 2: Generate the encryption key file Create a file containing the encryption key and set the correct permissions: ddif=/dev/urandomof=/etc/mongodb-keyfilebs=512

See all articles