1

有没有像 MongoId::isValid($id) 这样的函数?你如何确定一个对象是否是 MongoDate 对象?检查 $mongoDateObject->sec isset() 是否?

4

2 回答 2

3
  1. if (is_a($mongoDateObject, 'MongoDate')) {...}
  2. if (get_class($mongoDateObject) == 'MongoDate')) {...}
于 2014-10-10T16:53:10.980 回答
2
if ($mongoDateObject instanceof MongoDate) {...}
于 2016-02-22T11:46:27.983 回答