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.
コード例 #1
0
ファイル: MongoCursor.php プロジェクト: Nkelliny/Framework
 /**
  * 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();
 }
コード例 #2
0
ファイル: class.Mumongo.php プロジェクト: diandengs/RechoPHP
 /**
  * 解释该查询
  * @return Array
  */
 public function explain()
 {
     return $this->oMongoCursor->explain();
 }