public function DrupalLocalStreamWrapper::stream_close in Drupal 7
Support for fclose().
Return value
TRUE if stream was successfully closed.
Overrides StreamWrapperInterface::stream_close
See also
http://php.net/manual/streamwrapper.stream-close.php
File
- includes/
stream_wrappers.inc, line 547 - Drupal stream wrapper interface.
Class
- DrupalLocalStreamWrapper
- Drupal stream wrapper base class for local files.
Code
public function stream_close() {
return fclose($this->handle);
}