public File::getSize()
Returns the size of the file.
Return value
string The size of the file in bytes.
Overrides FileInterface::getSize
File
- core/modules/file/src/Entity/File.php, line 94
Class
- File
- Defines the file entity class.
Namespace
Drupal\file\Entity
Code
1 2 3 | public function getSize() { return $this ->get( 'filesize' )->value; } |
Please login to continue.