function LocalStream::stream_truncate
Same name in other branches
- 9 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
- 10 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
- 11.x core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
Overrides PhpStreamWrapperInterface::stream_truncate
1 method overrides LocalStream::stream_truncate()
- LocalReadOnlyStream::stream_truncate in core/
lib/ Drupal/ Core/ StreamWrapper/ LocalReadOnlyStream.php - Truncate stream.
File
-
core/
lib/ Drupal/ Core/ StreamWrapper/ LocalStream.php, line 360
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapperCode
public function stream_truncate($new_size) {
return ftruncate($this->handle, $new_size);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.