public LocalReadOnlyStream::rmdir($uri, $options)
Support for rmdir().
Directory will never be deleted as this is a read-only stream wrapper.
string $uri: A string containing the URI to the directory to delete.
int $options: A bit mask of STREAM_REPORT_ERRORS.
bool FALSE as directory will never be deleted.
Overrides LocalStream::rmdir
http://php.net/manual/streamwrapper.rmdir.php
public function rmdir($uri, $options) { trigger_error('rmdir() not supported for read-only stream wrappers', E_USER_WARNING); return FALSE; }
© 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!LocalReadOnlyStream.php/function/LocalReadOnlyStream::rmdir/8.1.x