Upload large files to WebDAV with resume support
问题 I want to upload large files to ownCloud with WebDAV API. I use this code to do this: <?php $url = "http://user:password@owncloud.local/remote.php/webdav/test.mp4"; $localfile = "test.mp4"; $fp = fopen ($localfile, "r"); $ch = curl_init(); curl_setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_PUT, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_INFILE, $fp); curl_setopt($ch, CURLOPT_INFILESIZE, filesize($localfile));