W3cubDocs

/Drupal 8

public function LocalStream::dir_closedir

public LocalStream::dir_closedir()

Support for closedir().

Return value

bool TRUE on success.

Overrides PhpStreamWrapperInterface::dir_closedir

See also

http://php.net/manual/streamwrapper.dir-closedir.php

File

core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 564

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

public function dir_closedir() {
  closedir($this->handle);
  // We do not really have a way to signal a failure as closedir() does not
  // have a return value.
  return TRUE;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StreamWrapper!LocalStream.php/function/LocalStream::dir_closedir/8.1.x