PhpStreamWrapperInterface::stream_stat

public PhpStreamWrapperInterface::stream_stat() Return value array File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 188 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_stat();

PhpStreamWrapperInterface::stream_set_option

public PhpStreamWrapperInterface::stream_set_option($option, $arg1, $arg2) Change stream options. This method is called to set options on the stream. Parameters int $option: One of: STREAM_OPTION_BLOCKING: The method was called in response to stream_set_blocking(). STREAM_OPTION_READ_TIMEOUT: The method was called in response to stream_set_timeout(). STREAM_OPTION_WRITE_BUFFER: The method was called in response to stream_set_write_buffer(). int $arg1: If option is: STREAM_OPTION_BLOCKING

PhpStreamWrapperInterface::stream_seek

public PhpStreamWrapperInterface::stream_seek($offset, $whence = SEEK_SET) Seeks to specific location in a stream. This method is called in response to fseek(). The read/write position of the stream should be updated according to the offset and whence. Parameters int $offset: The byte offset to seek to. int $whence: Possible values: SEEK_SET: Set position equal to offset bytes. SEEK_CUR: Set position to current location plus offset. SEEK_END: Set position to end-of-file plus offset. Defau

PhpStreamWrapperInterface::stream_read

public PhpStreamWrapperInterface::stream_read($count) Return value string File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 126 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_read($count);

PhpStreamWrapperInterface::stream_open

public PhpStreamWrapperInterface::stream_open($path, $mode, $options, &$opened_path) Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 121 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_open($path, $mode, $options, &$opened_path);

PhpStreamWrapperInterface::stream_metadata

public PhpStreamWrapperInterface::stream_metadata($path, $option, $value) Sets metadata on the stream. Parameters string $path: A string containing the URI to the file to set metadata on. int $option: One of: STREAM_META_TOUCH: The method was called in response to touch(). STREAM_META_OWNER_NAME: The method was called in response to chown() with string parameter. STREAM_META_OWNER: The method was called in response to chown(). STREAM_META_GROUP_NAME: The method was called in response to ch

PhpStreamWrapperInterface::stream_lock

public PhpStreamWrapperInterface::stream_lock($operation) Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 84 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_lock($operation);

PhpStreamWrapperInterface::stream_flush

public PhpStreamWrapperInterface::stream_flush() Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 79 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_flush();

PhpStreamWrapperInterface::stream_eof

public PhpStreamWrapperInterface::stream_eof() Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 74 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_eof();

PhpStreamWrapperInterface::stream_close

public PhpStreamWrapperInterface::stream_close() Closes stream. File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 69 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function stream_close();