| 
        
            MongoCommandCursor::__constructCreate a new command cursor 説明
   public  MongoCommandCursor::__construct
    ( MongoClient  
  $connection
   , string $ns
   , array $command = array()
   )Generally, you should not have to construct a MongoCommandCursor manually, as there are helper functions such as MongoCollection::aggregateCursor and MongoCollection::parallelCollectionScan; however, if the server introduces new commands that can return cursors, this constructor will be useful in the absence of specific helper methods. You may also consider using MongoCommandCursor::createFromDocument. パラメータ
 
 返り値Returns the new cursor. 例例1 MongoCommandCursor example 
<?php参考
  |