$v) $this->{$k} = $v; } else { $this->mimetype = $mimetype; $this->postname = $postname; $this->extension = pathinfo($filename, PATHINFO_EXTENSION); if (empty($this->extension)) $this->extension = 'tmp'; if (empty($this->mimetype)) $this->mimetype = Tools::getExtMine($this->extension); if (empty($this->postname)) $this->postname = pathinfo($filename, PATHINFO_BASENAME); $this->content = base64_encode(file_get_contents($filename)); $this->tempname = md5($this->content) . ".{$this->extension}"; } } /** * 获取文件上传信息 * @return \CURLFile|string * @throws \WeChat\Exceptions\LocalCacheException */ public function get() { $this->filename = Tools::pushFile($this->tempname, base64_decode($this->content)); if (class_exists('CURLFile')) { return new \CURLFile($this->filename, $this->mimetype, $this->postname); } else { return "@{$this->tempname};filename={$this->postname};type={$this->mimetype}"; } } /** * 通用销毁函数清理缓存文件 * 提前删除过期因此放到了网络请求之后 */ public function __destruct() { // Tools::delCache($this->tempname); } }