//컬类
클래스 컬
{
함수 컬(){
true를 반환합니다.
}
함수 실행($method, $url, $fields='', $userAgent='', $httpHeaders='', $username='', $password=''){
$ch = Curl::create();
if(false === $ch){
false를 반환합니다.
}
if(is_string($url) && strlen($url)){
$ret = 컬_setopt($ch, CURLOPT_URL, $url);
}그밖에{
false를 반환합니다.
}
//是否显示头부信息
컬_setopt($ch, CURLOPT_HEADER, false);
//
컬_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if($username != ''){
cur_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password);
}
$method = strtolower($method);
if('post' == $method){
컬_setopt($ch, CURLOPT_POST, true);
if(is_array($fields)){
$sets = 배열();
foreach($fields AS $key => $val){
$sets[] = $키 . '=' . urlencode($val);
}
$fields = implode('&',$sets);
}
컬_setopt($ch, CURLOPT_POSTFIELDS, $fields);
}else if('put' == $method){
컬_setopt($ch, CURLOPT_PUT, true);
}
//curl_setopt($ch, CURLOPT_PROGRESS, true);
//curl_setopt($ch, CURLOPT_VERBOSE, true);
//curl_setopt($ch, CURLOPT_MUTE, false);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);//设置curl超时秒数
if(strlen($userAgent)){
컬_setopt($ch, CURLOPT_USERAGENT, $userAgent);
}
if(is_array($httpHeaders)){
컬_setopt($ch, CURLOPT_HTTPHEADER, $httpHeaders);
}
$ret = 컬_exec($ch);
if(curl_errno($ch)){
컬_닫기($ch);
반환 배열(curl_error($ch), 컬_errno($ch));
}그밖에{
컬_닫기($ch);
if(!is_string($ret) || !strlen($ret)){
false를 반환합니다.
}
$ret 반환;
}
}
함수 포스트($url, $fields, $userAgent = '', $httpHeaders = '', $username = '', $password = ''){
$ret = Curl::execute('POST', $url, $fields, $userAgent, $httpHeaders, $username, $password);
if(false === $ret){
false를 반환합니다.
}
if(is_array($ret)){
false를 반환합니다.
}
$ret 반환;
}
함수 get($url, $userAgent = '', $httpHeaders = '', $username = '', $password = ''){
$ret = Curl::execute('GET', $url, '', $userAgent, $httpHeaders, $username, $password);
if(false === $ret){
false를 반환합니다.
}
if(is_array($ret)){
false를 반환합니다.
}
$ret 반환;
}
함수 생성(){
$ch = null;
if(!function_exists('curl_init')){
false를 반환합니다.
}
$ch = 컬_init();
if(!is_resource($ch)){
false를 반환합니다.
}
$ch 반환;
}
}
?>
용법
사용 방법 받기:
$curl = new Curl();
$curl->get('http://www.jb51.net/');
게시물 사용법 :
$curl = new Curl();
$curl->get('http://www.jb51.net/', 'p=1&time=0′);
希望本文所述对大家的PHP程序设计有所帮助。