我已经使用 PHP 中的 CodeIgniter 创建了一个基本的 CRM 系统,并且正在使用 Seafile-Serve Web API 来存储和检索位于托管 CRM 的同一服务器上的文件。以下是我创建的一个函数,用于使用 api 手册中定义的 post 方法将现有文件上传到 seafile:https ://manual.seafile.com/develop/web_api.html#upload-file-1
public function uploadFile($upload_link, $upload_file, $upload_filename){
return $this->decode($this->post($upload_link,
array(
'file' => new Curlfile('test.txt'),
'filename' => "test.txt",
'parent_dir' => "/"
)
));
}
我可以要求有人指出我做错的各种事情吗?