Php/docs/mongoid.set-state
来自菜鸟教程
MongoId::__set_state
(PECL mongo >= 1.0.8)
MongoId::__set_state — 创建一个假的 MongoId
This extension that defines this method
is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this method in the new extension.
说明
public static MongoId::__set_state
( array $props
) : MongoId
该函数仅被 PHP 内部使用,用户不需要调用它。
它和下面的函数是一样的:
<?phppublic static function __set_state($props) { return new MongoId("000000000000000000000000");}?>
参数
props
- 从理论上讲,要用数组的属性来创建一个新 id。但是 MongoId 示例没有属性,所以这是没用的。
返回值
具有 "000000000000000000000000" 的值的 id。