- PHP 手册
- 函数参考
- 数据库扩展
- 针对各数据库系统对应的扩展
- MongoDB
- MongoDB\BSON
- MongoDB\BSON\ObjectId
MongoDB\BSON\ObjectId::unserialize
(mongodb >=1.2.0)
MongoDB\BSON\ObjectId::unserialize — Unserialize an ObjectId
说明
final public MongoDB\BSON\ObjectId::unserialize(string$serialized
): void
参数
-
serialized
-
The serialized MongoDB\BSON\ObjectId.
返回值
没有返回值。
错误/异常
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
- Throws MongoDB\Driver\Exception\UnexpectedValueException if the properties cannot be unserialized (i.e.
serialized
was malformed). - Throws MongoDB\Driver\Exception\InvalidArgumentException if the properties are invalid (e.g. missing fields or invalid values).
参见
- MongoDB\BSON\ObjectId::serialize() - Serialize an ObjectId
- unserialize() - 从已存储的表示中创建 PHP 的值
- Serializing Objects
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/mongodb-bson-objectid.unserialize.php