لديك حساب بالفعل؟ دخول
دخول  سجل الأن 
رفع صورة الى الموقع عن طريق رابط
السلام عليكم
أريد طريقة أستطيع بواسطتها رفع صورة من رابط الى موقعي
مثل remote upload
تاريخ البداية: 17 / مايو / 2012 الساعة 21:30 اخر نشاط: 16 / أغسطس / 2012 الساعة 6:36 رفع
1 إجابة
يمكنك عمل هذا
copy('http://www.remotewebsite.com/image.jgp','data/image.jpg');
ولكنها تحتاح allow_url_fopen ان تكون مفتوحة او يمكنك استعمال هذه الطريقة
//remote image to copy
$remoteImageURL = 'http://www.website.com/image.jpg';
 
//local directory to store image
$dir_path = '/images/'; 
 
if($remoteImageURL){ 
 
require_once('class.get.image.php');
 
// initialize the class
$image = new GetImage;
 
// just an image URL
$image->source = $remoteImageURL;
$image->save_to = $dir_path; // with trailing slash at the end
 
$get = $image->download('curl'); // using cURL
 
$pic = $dir_path.basename($remoteImageURL);
 
//you can use the picture path e.g. Insert into DB from this variable $pic
والكلاس المستعمل فى المرفقات ويمكنك ايضا قراءة هذه المقالة PHP: How to Download a Remote Image using GD or cURL

بواسطة: molhm
منذ: 18 / مايو / 2012 الساعة 0:20

يظهر لي
CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or an open_basedir is set in
18 / مايو / 2012 الساعة 16:8

هذه الخاصية لن تعمل فى وجود السيف مود اون .. فهى خاصة بتتبع الرابط
18 / مايو / 2012 الساعة 22:41

أنشر اجابتك

xهل تريد الاجابة عن هذا السؤال؟ من فضلك سجل دخول او اشترك لتتمكن من الاجابة