function LocalStream::stream_truncate

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
  2. 8.9.x core/lib/Drupal/Core/StreamWrapper/LocalStream.php \Drupal\Core\StreamWrapper\LocalStream::stream_truncate()
  3. 10 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 295

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

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.