public function DrupalRemoteStreamWrapper::dir_readdir in Remote Stream Wrapper 7
Support for readdir().
Return value
The next filename, or FALSE if there are no more files in the directory.
Overrides StreamWrapperInterface::dir_readdir
See also
http://php.net/manual/en/streamwrapper.dir-readdir.php
File
- ./
remote_stream_wrapper.inc, line 415
Class
- DrupalRemoteStreamWrapper
- Stream wrapper to support local files.
Code
public function dir_readdir() {
return FALSE;
}