芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/vendor/spatie/laravel-backup/src/Helpers/File.php
hasZipExtension($path)) { return true; } return $this->hasAllowedMimeType($disk, $path); } protected function hasZipExtension(string $path): bool { return pathinfo($path, PATHINFO_EXTENSION) === 'zip'; } protected function hasAllowedMimeType(?Filesystem $disk, string $path): bool { return in_array($this->mimeType($disk, $path), self::$allowedMimeTypes); } protected function mimeType(?Filesystem $disk, string $path): bool | string { try { if ($disk && method_exists($disk, 'mimeType')) { return $disk->mimeType($path) ?: false; } } catch (Exception) { // Some drivers throw exceptions when checking mime types, we'll // just fallback to `false`. } return false; } }