(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.
该函数仅被 PHP 内部使用,用户不需要调用它。
它和下面的函数是一样的:
<?php
public static function __set_state($props) {
return new MongoId("000000000000000000000000");
}
?>
props
从理论上讲,要用数组的属性来创建一个新 id。但是 MongoId 示例没有属性,所以这是没用的。
具有 "000000000000000000000000" 的值的 id。