Rating - 95.8%
Yandex disk hesabınıza ftp nizden dosya taşımak istiyorsunuz ? ozaman hiç dosyayı pc ye indir sonra tekrar yükle yapmadan aşağıdaki ufak kod ile bu işlemi ftp üzerinden yapabilirsiniz.
PHP:
<?php
$fileName = "dosyaadin.rar";
$webdavUrl = "https://webdav.yandex.com.tr/";
$webdavCredentials = array(
'mailkullaniciadi',
'sifreniz'
);
$fileHandler = fopen($fileName, 'r');
$fileSize = filesize($fileName);
$ch = curl_init($webdavUrl . $fileName);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, implode(':', $webdavCredentials));
curl_setopt($ch, CURLOPT_PUT, true);
curl_setopt($ch, CURLOPT_INFILE, $fileHandler);
curl_setopt($ch, CURLOPT_INFILESIZE, $fileSize);
curl_exec($ch);
fclose($fileHandler);
?>