天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

分享下頁面關(guān)鍵字抓取www.icbase.com站點(diǎn)代碼(帶asp.net參數(shù)的)

復(fù)制代碼 代碼如下:
<?php
/**
 * HOST: www.icbase.com
 */
//set_time_limit(0);
// base function
function curl_get($url, $data = array(), $header = array(), $timeout = 15, $port = 80, $reffer = '', $proxy = '')
{
 $ch = curl_init();
 if (!empty($data)) {
 $data = is_array($data)?http_build_query($data): $data;
 $url .= (strpos($url,'?')? '&': "?") . $data;
 }
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
 curl_setopt($ch, CURLOPT_POST, 0);
 curl_setopt($ch, CURLOPT_PORT, $port);
 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); //是否抓取跳轉(zhuǎn)后的頁面
 $reffer && curl_setopt($ch, CURLOPT_REFERER, $reffer);
 if($proxy) {
 curl_setopt($ch, CURLOPT_PROXY, $proxy);
 curl_setopt($ch, CURLOPT_PROXYPORT, 1723);
 curl_setopt($ch, CURLOPT_PROXYUSERPWD,"andhm001:andhm123");
 }

$result = array();
 $result['result'] = curl_exec($ch);
 if (0 != curl_errno($ch)) {
 $result['error'] = "Error:/n" . curl_error($ch);

}
 curl_close($ch);
 return $result;
}

復(fù)制代碼 代碼如下:
function curl_post($url, $data = array(), $header = array(), $timeout = 5, $port = 80)
{
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
 //curl_setopt($ch, CURLOPT_PORT, $port);
 !empty ($header) && curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$result = array();
 $result['result'] = curl_exec($ch);
 if (0 != curl_errno($ch)) {
 $result['error'] = "Error:/n" . curl_error($ch);

}
 curl_close($ch);

return $result;
}

/**
 * 獲取列表頁的html源碼
 * @param string $keywords 搜索關(guān)鍵字
 * @param int $page 頁數(shù)
 * @return boolean|array
 */
function getListHtml($keywords, $page=1)
{
 if ($page < 0)
 {
 return false;
 }
 $page = $page == 0 ? 1 : intval($page);
 if ($page == 1)
 {
 $result = curl_get('http://www.icbase.com/ProResult.ASPx', array('ProKey' => $keywords));
 if ( isset($result['error']) )
 {
 return false;
 //exit($result['error']);
 }
 $result = $result['result'];

 // ASP.NET post提交數(shù)據(jù)
 if(! defined('__VIEWSTATE') && preg_match('/<input/s+type="hidden"/s+name="__VIEWSTATE"/s+id="__VIEWSTATE"/s+value="(.[^"]+)"/isU', $result, $matches))
 {
 define('__VIEWSTATE', $matches[1]);
 } else {
 return false;
 }

 if(! defined('__PREVIOUSPAGE') && preg_match('/<input/s+type="hidden"/s+name="__PREVIOUSPAGE"/s+id="__PREVIOUSPAGE"/s+value="(.[^"]+)"/isU', $result, $matches))
 {
 define('__PREVIOUSPAGE', $matches[1]);
 } else {
 return false;
 }

 if(! defined('__EVENTVALIDATION') && preg_match('/<input/s+type="hidden"/s+name="__EVENTVALIDATION"/s+id="__EVENTVALIDATION"/s+value="(.[^"]+)"/isU', $result, $matches))
 {
 define('__EVENTVALIDATION', $matches[1]);
 } else {
 return false;
 }

 return $result;
 }
 $data = array(
 '__EVENTTARGET' => 'pager',
 '__EVENTARGUMENT' => $page,
 '__VIEWSTATE' => __VIEWSTATE,
 '__PREVIOUSPAGE' => __PREVIOUSPAGE,
 '__EVENTVALIDATION' => __EVENTVALIDATION,
 );
 $result = curl_post('http://www.icbase.com/ProResult.ASPx?ProKey=' . $keywords, $data);
 if ( isset($result['error']) )
 {
 return false;
 //exit($result['error']);
 }
 $result = $result['result'];
 return $result;
}

/**
 * 獲取列表頁 a鏈接的url
 * @param string $html html源碼
 * @return array
 */
function getListHref($html)
{
 $pattern = '/<a/s+href=/'(.[^/']+)/'/s+target="_blank"/s*>[/s/n]*<img.+[^>]//>/isU';
 if (preg_match_all($pattern, $html, $matches))
 {
 return $matches[1];
 } else {
 // 沒有匹配項(xiàng)
 return array();
 }
}

/**
 * 獲取數(shù)字
 * @param string $html html源碼
 * @return number
 */
function getListNextPage($html)
{
 $pattern = '/<div/s+id="Pager".+[^>]>.+<a/s+href="Javascript/:__doPostBack/(/'Pager/',/'(/d+)/'/)">><//a>/isU';
 if (preg_match($pattern, $html, $matches))
 {
 return intval($matches[1]);
 } else {
 return -1;
 }
}

/**
 * 獲取列表也所有的href
 * @param string $keywords 搜索關(guān)鍵字
 * @return boolean|array
 */
function getListHrefAll($keywords)
{
 if (empty($keywords))
 {
 return false;
 }

 $html = getListHtml($keywords);
 $hrefList = getListHref($html);
 if (empty($hrefList))
 {
 // 沒有結(jié)果
 return array();
 }
 $nextPage = getListNextPage($html);
 while ($nextPage > 0)
 {
 $html = getListHtml($keywords, $nextPage);
 $tmpHrefList = getListHref($html);
 $hrefList = array_merge($hrefList, $tmpHrefList);
 $nextPage = getListNextPage($html);
 }
 return $hrefList;
}

/**
 * 獲取詳情頁信息
 * @param string $url url地址或者是抓取到的html源代碼 根據(jù)@see $is_url 區(qū)分
 * @param int $is_url 1使用的是url地址 0直接處理html源代碼
 * @return boolean|multitype:|multitype:string
 */
function getDetail($url, $is_url = 1)
{
 if ( empty($url) )
 {
 return false;
 }
 $host = 'www.icbase.com';
 $html = $url;
 if ($is_url) {
 $url = '/' . ltrim($url, '/');
 $result = curl_get($host . $url);
 if ( isset($result['error']) )
 {
 exit($result['error']);
 }
 $html = $result['result'];
 }

 $result = array(
 'sup_part' => '', // 供應(yīng)商型號(hào)
 'sup_id' => '', // 供應(yīng)商ID
 'mfg_part' => '', // 制造商型號(hào)
 'mfg_name' => '', // 制造商名稱
 'cat_name' => '', // 分類名稱
 'para' => '', // 屬性
 'desc' => '', // 描述
 'pdf_url' => '', // PDF地址
 'sup_stock' => '', // 庫存
 'min_purch' => '', // 最小訂購量
 'price' => '', // 價(jià)格
 'img_url' => '', // 圖片地址
 'createtime' => '', // 創(chuàng)建時(shí)間
 'datacode' => '', // 批號(hào)
 'package' => '', // 封裝
 'page_url' => '', // 頁面地址
 );

// mfg_part
 $pattern = '/<td>產(chǎn)品型號(hào)<//td><td>(.[^<]+)</isU';
 if (preg_match($pattern, $html, $matches))
 {
 $result['mfg_part'] = trim($matches[1]);
 } else {
 // 此項(xiàng)木有,說明也沒處處了
 return array();
 }

 // mfg_name
 $pattern = '/<td>廠商<//td>[/s/n]*<td>(.+)<//td>/isU';
 if (preg_match($pattern, $html, $matches))
 {
 $result['mfg_name'] = trim($matches[1]);
 }

 // para
 $pattern = '/<tr/s+style="background-color:#E9E9E9;color:black; font-weight:bold;">(.+)<//tr><//table>/isU';
 if (preg_match($pattern, $html, $matches))
 {
 if (preg_match_all('/<td>(.+)<//td>/isU', $matches[1], $matches))
 {
 $count = count($matches[1]);
 $count = intval($count / 2 );
 foreach ($matches[1] as $k=>$v)
 {
 if ($k >= $count)
 {
 break;
 }
 if (trim($v) == '描述')
 {
 // desc
 $result['desc'] = trim($matches[1][$count + $k]);
 continue;
 }
 $v = trim($v);
 $result['para'][$v] = trim($matches[1][$count + $k]);
 }
 }
 }

 // pdf_url
 $pattern = '/<td>詳細(xì)資料<//td><td><a/s+href="(.[^"]+)"/isU';
 if (preg_match($pattern, $html, $matches))
 {
 $result['pdf_url'] = trim($matches[1]);
 }

 // sup_stock
 $pattern = '/<td>庫存數(shù)量<//td>[/s/n]*<td>(/d+)<//td>/isU';
 if (preg_match($pattern, $html, $matches))
 {
 $result['sup_stock'] = trim($matches[1]);
 }

 // price
 $pattern = '/<tr><td.[^>]+>(/d+)/+<//td><td.[^>]+>.[^/d]*([/d.]+)<//td><//tr>/isU';
 if (preg_match_all($pattern, $html, $matches))
 {
 foreach ($matches[1] as $k=>$v)
 {
 $result['price'][$v] = '¥' . $matches[2][$k];
 }
 }

 //img_url
 $pattern = '/<td>圖片<//td><td><img/s+src="(.[^"]+)"/isU';
 if (preg_match($pattern, $html, $matches))
 {
 $result['img_url'] = trim($matches[1]);
 }

 // page_url
 if ($is_url)
 {
 $result['page_url'] = $host . $url;
 }

return $result;
}

/**
 * 最終調(diào)用函數(shù)
 * @param string $keywords 搜索關(guān)鍵字
 * @return array
 */
function getData($keywords)
{
 $hrefList = getListHrefAll($keywords);
 $result = array();

 foreach ($hrefList as $k=>$v)
 {
 $result[] = getDetail($v);
 }

 return $result;
}

// Test Script
$keywords = trim($_GET['keywords']);
$result = getData($keywords);

print_r($result);

php技術(shù)分享下頁面關(guān)鍵字抓取www.icbase.com站點(diǎn)代碼(帶asp.net參數(shù)的),轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 丰满艳妇亲伦 | 国精产品砖一区二区三区糖心 | 亚洲精品国产在线网站 | 老牛天天晚上夜噜噜噜 | 好大好爽好深舒服死了 | 欧美动物交ideos| 小p孩玩成年女性啪啪资源 小777论坛 | 国产网红主播精品福利大秀专区 | 亚洲午夜久久久精品电影院 | 亚洲性夜色噜噜噜网站2258KK | 最美白嫩的极品美女ASSPICS | 国产人A片在线乱码视频 | 中文视频在线 | aaaaaaa一级毛片| 国产精品永久免费 | 亚洲精品福利在线 | 纯肉无码AV在线看免费看 | 久久99精品国产99久久6男男 | 亚洲呦女专区 | 夜色爽爽爽久久精品日韩 | 成人无码在线视频区 | 国产精品久久久久久无码专区 | 国产精品亚洲专一区二区三区 | 美女被j进去动态 | 轻轻cao | 欧洲xxxxx | 里番※琉璃全彩acg奈亚子 | 四虎亚洲中文字幕永久在线 | 大学生一级毛片免费看 | 国产真实夫妇交换视频 | 国产成久久免费精品AV片天堂 | 动漫美女被到爽了流 | a级全黄试频试看30分钟 | 短篇合集纯肉高H深陷骚 | 久久青草影院 | 精品国产国产综合精品 | 亚洲AV久久久噜噜噜久久 | 131美女爱做视频午夜剧场 | 中文字幕爆乳JULIA女教师 | 亚洲中文字幕在线精品 | 中文无码有码亚洲 欧美 |