public function LocalStream::stream_truncate in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
Truncate stream.
Will respond to truncation; e.g., through ftruncate().
Parameters
int $new_size: The new size.
Return value
bool TRUE on success, FALSE otherwise.
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 365 - Contains \Drupal\Core\StreamWrapper\LocalStream.
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);
}