MongoCursor::explain PHP Method

explain() public method

Return an explanation of the query, often useful for optimization and debugging
public explain ( ) : array
return array Returns an explanation of the query.
    public function explain()
    {
        $this->notImplemented();
    }

Usage Example

Beispiel #1
0
 /**
  * Return an explanation of the query, often useful for optimization and debugging
  * @link http://www.php.net/manual/en/mongocursor.explain.php
  * @return array Returns an explanation of the query.
  */
 public function explain()
 {
     return $this->cursor->explain();
 }
All Usage Examples Of MongoCursor::explain