>  기사  >  백엔드 개발  >  PHP에서 컬을 통해 Yahoo 상사 검색 결과를 가져오기 위한 구현 코드

PHP에서 컬을 통해 Yahoo 상사 검색 결과를 가져오기 위한 구현 코드

高洛峰
高洛峰원래의
2016-11-30 10:23:19899검색

1. 웹 콘텐츠를 크롤링하기 위한 컬 클래스 작성
코드 복사
class CurlUtil
{
private $curl
private $timeout = 10;
/**
* 컬 객체 초기화
*/
공용 함수 __construct()
{
$this->curl =curl_init()
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER; , 1) ;
curl_setopt($this->curl, CURLOPT_USERAGENT, "Mozilla/4.0(호환; MSIE 6.0; Windows NT 5.1; SV1)")
curl_setopt($this->curl, CURLOPT_HEADER , false) ; //헤더 정보 표시 여부 설정
curl_setopt($this->curl, CURLOPT_NOBODY, false) //페이지 내용 출력 여부 설정
curl_setopt($this->curl, CURLOPT_CONNECTTIMEOUT , $this ->timeout);
curl_setopt($this->curl, CURLOPT_FOLLOWLOCATION, true)
curl_setopt($this->curl, CURLOPT_AUTOREFERER, true); /**
* 등록 취소 기능 닫기 컬 개체
*/
공용 함수 __destruct()
{
curl_close($this->curl)
}
/**
* 웹페이지 콘텐츠 가져오기
*/
public function getWebPageContent($url)
{
curl_setopt($this->curl, CURLOPT_URL, $url)
return curl_exec($this->curl)
}


2. 컬 객체 생성
코드 복사
$CurlUtil = new CurlUtil()

3.
코드 복사
function getYahooSearch(CurlUtil $curl, $key)
{
$key = urlencode($key)
$searchUrl = "http:/ /boss.yahooapis.com/ysearch /web/v1/$key?appid=Yahoo 앱 ID&lang=tzh®ion=hk&abstract=long&count=20&format=json&start=0&count=10";
$josnStr = $curl-> getWebPageContent($searchUrl)
$searchDataInfo = json_decode($josnStr, true);
$searchData = $searchDataInfo['ysearchresponse']['resultset_web']; 🎜>if (!empty( $searchData)) {
foreach ($searchData as $data) {
$returnArray[] = array("url" => $data['url'], "date " => $data[ '날짜'], '제목' => 스트립_태그($data['제목']), '설명' => 스트립_태그($data['추상']));
}
}
return $returnArray;
}

4. 테스트 결과
var_dump(getYahooSearch($CurlUtil, "Baidu"));

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.