App\services\UploadsManager::fileMimeType PHP 메소드

fileMimeType() 공개 메소드

Return the mime type
public fileMimeType ( $path ) : null | string
$path
리턴 null | string
    public function fileMimeType($path)
    {
        return $this->mimeDetect->findType(pathinfo($path, PATHINFO_EXTENSION));
    }