0
我試圖將照片張貼到Facebook和只要圖像是在同一個文件夾中的PHP腳本它的作品上傳圖片:PHP - 從外部服務器
$file= "myimage.png";
$args = array(
'message' => 'Photo from application',
);
$args[basename($file)] = '@' . realpath($file);
$ch = curl_init();
我需要做什麼來改變,使之成爲外部圖像工作,比如:
$file= "http://www.example.com/myimage.png";
http://stackoverflow.com/questions/724391/saving-image-from-php-url-using-php – transilvlad
http://stackoverflow.com/questions/909374/copy-image-from-remote-server -over-http – transilvlad
在那裏,我找到了兩個答案給你一個好的Google搜索。 – transilvlad