MongoId::isValid

(PECL mongo >= 1.5.0)

MongoId::isValidCheck if a value is a valid ObjectId

Description

public static bool MongoId::isValid ( mixed $value )

This method may be used to check a variable before passing it as an argument to MongoId::__construct().

Parameters

value

The value to check for validity.

Return Values

Returns TRUE if value is a MongoId instance or a string consisting of exactly 24 hexadecimal characters; otherwise, FALSE is returned.

Коментарии

Автор:
There is no equivalent for this method in the new extension, so instead use…

<?php
if ($id instanceof MongoDBBSONObjectID
   
|| preg_match('/^[a-f\d]{24}$/i'$id)
) {
 

}
?>
2016-07-14 17:57:53
http://php5.kiev.ua/manual/ru/mongoid.isvalid.html

    Поддержать сайт на родительском проекте КГБ