The MongoDB\BSON\Unserializable interface

(mongodb >=1.0.0)

简介

Classes that implement this interface may be specified in a type map for unserializing BSON arrays and documents (both root and embedded).

接口摘要

class MongoDB\BSON\Unserializable {
/* 方法 */
abstract public bsonUnserialize(array $data): void
}

更新日志

版本 说明
PECL mongodb 2.0.0 之前声明为暂定的返回类型现在已被强制执行。
PECL mongodb 1.15.0 在 PHP 8.0 及更高版本中,方法的返回类型被声明为暂定(tentative), 这会导致在实现该接口但未声明相应返回类型的代码中触发弃用提示。 可以添加 #[ReturnTypeWillChange] 属性来消除该弃用提示。

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top