function File::getSize

Same name and namespace in other branches
  1. 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()
  2. 8.9.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()
  3. 10 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::getSize()

Overrides FileInterface::getSize

File

core/modules/file/src/Entity/File.php, line 115

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function getSize() {
    $filesize = $this->get('filesize')->value;
    return isset($filesize) ? (int) $filesize : NULL;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.