略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: MongoDB\BSON\ObjectId::__construct

2024-04-27

MongoDB\BSON\ObjectId::__construct

(mongodb >=1.0.0)

MongoDB\BSON\ObjectId::__constructConstruct a new ObjectId

说明

final public MongoDB\BSON\ObjectId::__construct(string $id = ?)

参数

id (string)

A 24-character hexadecimal string. If not provided, the driver will generate an ObjectId.

错误/异常

范例

示例 #1 MongoDB\BSON\ObjectId::__construct() example

<?php

var_dump
(new MongoDB\BSON\ObjectId());

var_dump(new MongoDB\BSON\ObjectId('000000000000000000000001'));

?>

以上例程的输出类似于:

object(MongoDB\BSON\ObjectId)#1 (1) {
  ["oid"]=>
  string(24) "56732d3dda14d81214634921"
}
object(MongoDB\BSON\ObjectId)#1 (1) {
  ["oid"]=>
  string(24) "000000000000000000000001"
}

add a noteadd a note

User Contributed Notes 1 note

up
3
fejlesztes at letscode dot hu
6 years ago
If you pass NULL to the __construct() method, it wont throw exceptions, nor errors, but prematurely ends the PHP processing (so it produced an 502 response over nginx), not like the legacy MongoId class.

官方地址:https://www.php.net/manual/en/mongodb-bson-objectid.construct.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3