コード例 #1
0
ファイル: Image.php プロジェクト: Aliqhuart/puzzle-wp
 /**
  * Get image mime type
  * @return string
  */
 public function getMime()
 {
     $filePath = $this->getPath();
     if (\File::exists($filePath)) {
         return \File::mimeType($filePath);
     }
     return 'unknown/unknown';
 }