У меня есть партнерская ссылка с изображением продукта
http://www.myaffiliate.com/products/product.jpg
Я хочу скопировать изображение на свой веб-сайт, в папку с названием let скажем продукты.Он размещен на общем сервере, а не на моем компьютере.Я думаю, что php copy () не работает, хорошо попробовал, и я думаю, что мои хосты не поддерживают этот метод.Как я могу это сделать, скручивание может быть?Затем мне нужна команда php, чтобы удалить все изображения из папки продуктов - я сделаю это с помощью 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);
}
//baracuda reloaded
mysql_query("TRUNCATE TABLE reloaded", $dbh1);
mysql_query("TRUNCATE TABLE reloaded", $dbh2);
mysql_query("INSERT INTO reloaded SELECT * FROM ".$table."", $dbh1);
mysql_query("INSERT INTO reloaded SELECT * FROM ".$table."", $dbh2);
?>