$postparam = array(
'file' => new \CurlFile(\App::path('tmp') . "test.jpg", 'image/jpg', 'test.jpg'
));
$ch = curl_init($server);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postparam);
$json = json_decode(curl_exec($ch), true);
curl_close($ch)
Вот так я загружаю сейчас файл . все работает.
Но как сделать, чтобы файл грузился с удаленного сервера?
$postparam = array(
'file' => new \CurlFile("
asdasd.ru/test.jpg", 'image/jpg', 'test.jpg'
));
Так не работает. Подскажите