See also: Bucket::openUploadStream()
See also: Bucket::openDownloadStream()
Exemple #1
0
 /**
  * Registers the GridFS stream wrapper if it is not already registered.
  */
 private function registerStreamWrapper()
 {
     if (in_array(self::$streamWrapperProtocol, stream_get_wrappers())) {
         return;
     }
     StreamWrapper::register(self::$streamWrapperProtocol);
 }