diff --git a/src/service/StorageService.php b/src/service/StorageService.php index edd147b..0b9679a 100644 --- a/src/service/StorageService.php +++ b/src/service/StorageService.php @@ -70,13 +70,8 @@ class StorageService extends Service if (empty($this->path)) $this->getConfig(); // 判断是否存在 is_dir($this->path) or mkdir($this->path, 0777, true); - $arrContextOptions = [ - 'ssl' => [ - 'verify_peer' => false, - 'verify_peer_name' => false, - ] - ]; - return file_put_contents("{$this->path}{$name}", file_get_contents($this->remotely, false, stream_context_create($arrContextOptions))); + if (strpos($this->remotely, 'https')) $this->remotely = str_replace("https", "http", $this->remotely); + return file_put_contents("{$this->path}{$name}", file_get_contents($this->remotely)); } /**