MongoDB\BSON\ObjectId::unserialize
(mongodb >=1.2.0)
MongoDB\BSON\ObjectId::unserialize — Unserialize an ObjectId
说明
final
public
MongoDB\BSON\ObjectId::unserialize (
string
$serialized
) :
void
返回值
Returns the unserialized 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