1.20.x stream_wrappers.inc | public BackdropLocalStreamWrapper::stream_cast($cast_as) |
Retrieve the underlying stream resource.
This method is called in response to stream_select().
@link http://php.net/manual/streamwrapper.stream-cast.php
Parameters
int $cast_as: Can be STREAM_CAST_FOR_SELECT when stream_select() is calling stream_cast() or STREAM_CAST_AS_STREAM when stream_cast() is called for other uses.
Return value
resource|false: The underlying stream resource or FALSE if stream_select() is not supported.
See also
File
- includes/
stream_wrappers.inc, line 659 - Backdrop stream wrapper interface.
Class
- BackdropLocalStreamWrapper
- Backdrop stream wrapper base class for local files.
Code
public function stream_cast($cast_as) {
return $this->handle ? $this->handle : FALSE;
}