public function Binary::getString

Overrides TypedData::getString().

Overrides TypedData::getString

File

drupal/core/lib/Drupal/Core/TypedData/Type/Binary.php, line 76
Contains \Drupal\Core\TypedData\Type\Binary.

Class

Binary
The binary data type.

Namespace

Drupal\Core\TypedData\Type

Code

public function getString() {

  // Return the file content.
  $contents = '';
  while (!feof($this
    ->getValue())) {
    $contents .= fread($this->handle, 8192);
  }
  return $contents;
}