php 抓取亞馬遜中國產品數據-標題,價格,首圖片

<?php
set_time_limit(0);
date_default_timezone_set("Asia/shanghai");
//自定義抓取圖片地址
$url = 'http://www.amazon.cn/Apple-iPhone-5S-3G%E6%99%BA%E8%83%BD%E6%89%8B%E6%9C%BA/dp/B00FFVIPN8/ref=sr_1_1?ie=UTF8&qid=1395041969&sr=8-1&keywords=iphone5s';

$ip_arr = get_ips();
$ip = trim(get_rand_ip($ip_arr)); //隨機ip
$content = get_content_by_url($url, $ip);

//獲取標題
preg_match("/<span id=\"btAsinTitle\">[\s]*<span style=\"padding-left: 0\">[\s]*(.*?)[\s]*<\/span>/i", $content, $match_title);
if(isset($match_title[1]) && $match_title[1]){
	$title = $match_title[1];
	echo '標題爲:' . $title . '<br />';
}else{
	echo '沒有獲取到標題,程序終止:';
	exit;
}
//獲取價格
preg_match("/<b class=\"priceLarge\">¥[\s]*(.*?)<\/b>/i", $content, $match_price);
if(isset($match_title[1]) && $match_price[1]){
	$price = $match_price[1];
	echo '價格爲:' . $price . '<br />';
}else{
	echo '沒有獲取到價格,程序終止:';
}
//獲取圖片
preg_match("/<div class=\"main-image-inner-wrapper\">[\s]*<img src=\"(.*)?\"/i", $content, $match_img);
if(isset($match_img[1]) && $match_img[1]){
	$img_url = $match_img[1];
	echo '圖片地址爲:' . $img_url . '<br />';
	echo "<img src='$img_url' width=300, height=300>";
}else{
	echo '沒有獲取圖片地址,程序終止:';
	exit;
}

function get_rand_ip($ip_arr){
    if(empty($ip_arr)){
	    return false;
	}
	$ip_count = count($ip_arr);
	$rand_num = rand(0, $ip_count-1);
	return trim($ip_arr[$rand_num]);
}

function get_ips(){
    $fp = fopen('ip.txt', 'r+');
	$ip_arr = array();
	while($line=fgets($fp)){
	    array_push($ip_arr, $line);
	}
	fclose($fp);
	return $ip_arr;
}

function get_content_by_url($url, $ip = '127.0.0.1'){
	if(empty($url)){
		return;
	}
	
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL,$url);
	curl_setopt($ch, CURLOPT_USERAGENT,'Mozilla/5.0 (compatible; MSIE 6.0; Windows NT 5.0)');
	curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); 
	if(!empty($ip)){
		curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWARDED-FOR:' . $ip, 'CLIENT-IP:' . $ip));  //構造IP
	}
	
	$content = curl_exec($ch);
	return $content;
}


抱歉,沒找到上傳附件的地方,ip.txt沒上傳。您能夠百度下,有不少ip庫,下載一個就能用,一行一個ipphp

相關文章
相關標籤/搜索