Php/docs/mongodbref.isref
来自菜鸟教程
MongoDBRef::isRef
(PECL mongo >= 0.9.0)
MongoDBRef::isRef — 检测数组是否为数据库引用
This extension that defines this class
is deprecated. Instead, the MongoDB extension should be used. There is no equivalent for this class in the new extension.
数据库引用(database reference) 的概念,并且此类已经被弃用。
说明
public static MongoDBRef::isRef
( mixed $ref
) : bool
这个方法没有真正读取引用的数据,所以它无法检测引用是否损坏。
它仅仅检查 ref
是否为有效的数据库引用格式(一个对象或数组,并具有 $ref 和 $id 的字段)。
参数
ref
- 要检查的数组或对象。
返回值
成功时返回 true
, 或者在失败时返回 false
。