I have an affiliate link with a product image
http:
I want to copy the view to my website, in a folder called let say products. He participated in a joint sherver, not my computer. I think php copy () is not working, I tried it well, and I think my hosts do not support this method. How can i do this? Then I need a php command to delete all images from the product folder - I will do this with cronjob.
<?php $table = 'cron'; $feed = 'myfeed'; $xml = simplexml_load_file($feed); mysql_query("TRUNCATE TABLE ".$table."", $dbh1); mysql_query("TRUNCATE TABLE ".$table."", $dbh2); function getimg($url) { $headers[] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg'; $headers[] = 'Connection: Keep-Alive'; $headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8'; $user_agent = 'php'; $process = curl_init($url); curl_setopt($process, CURLOPT_HTTPHEADER, $headers); curl_setopt($process, CURLOPT_HEADER, 0); curl_setopt($process, CURLOPT_USERAGENT, $useragent); curl_setopt($process, CURLOPT_TIMEOUT, 30); curl_setopt($process, CURLOPT_RETURNTRANSFER, 1); curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1); $return = curl_exec($process); curl_close($process); return $return; } foreach( $xml->performerinfo as $performerinfo ) { $performerid = $performerinfo->performerid; $category = $performerinfo->category; $subcategory = $performerinfo->subcategory; $bio = $performerinfo->bio; $turnons = $performerinfo->turnons; $willing = $performerinfo->willingness; $willingness = str_replace(',', ', ', $willing); $age = $performerinfo->age; $build = $performerinfo->build; $height = $performerinfo->height; $weight = $performerinfo->weight; $breastsize = $performerinfo->breastsize; $haircolor = $performerinfo->haircolor; $hairlength = $performerinfo->hairlength; $eyecolor = $performerinfo->eyecolor; $ethnicity = $performerinfo->ethnicity; $sexpref = $performerinfo->sexpref; $pic0 = $performerinfo->picture[0]; $pic1 = $performerinfo->picture[1]; $pic2 = $performerinfo->picture[2]; $pic3 = $performerinfo->picture[3]; $pic4 = $performerinfo->picture[4]; $test = $performerinfo->picture[0]; $imgurl = 'http://www.foodtest.ru/images/big_img/sausage_3.jpg'; $imagename= basename($imgurl); if(file_exists('./tmp/'.$imagename)){continue;} $image = getimg($imgurl); file_put_contents('tmp/'.$imagename,$image); }
php curl
webmasters May 14 '11 at 13:47 2011-05-14 13:47
source share