File::getMimeType

public File::getMimeType()

Returns the MIME type of the file.

Return value

string The MIME type of the file, e.g. image/jpeg or text/xml.

Overrides FileInterface::getMimeType

File

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

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

1
2
3
public function getMimeType() {
  return $this->get('filemime')->value;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.