1 Star 0 Fork 9

strwei/ajvod

forked from 安静/ajvod 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cURL.php 3.82 KB
一键复制 编辑 原始数据 按行查看 历史
安静 提交于 2014-02-28 17:30 . vod采集提交
<?php
/**
* cURL.php
* ==============================================
* Copy right 2013-2014 http://www.80aj.com
* ----------------------------------------------
* This is not a free software, without any authorization is not allowed to use and spread.
* ==============================================
* @param unknowtype
* @return return_type
* @author: 80aj
* @date: 2014-2-13
* @version: v1.0.0
*/
class cURL {
var $headers;
var $user_agent;
var $compression;
var $cookie_file;
var $proxy;
/**
* 初始化
*
* @param string $cookies
* @param string $cookie
* @param string $compression
* @param string $proxy
*/
function cURL($cookies = TRUE, $cookie = 'cookies.txt', $compression = 'gzip', $proxy = '') {
$this->headers [] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg';
$this->headers [] = 'Connection: Keep-Alive';
$this->headers [] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8';
$this->user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)';
$this->compression = $compression;
$this->proxy = $proxy;
$this->cookies = $cookies;
if ($this->cookies == TRUE)
$this->cookie ( $cookie );
}
/**
* 配置cookie
*
* @param unknown $cookie_file
*/
function cookie($cookie_file) {
if (file_exists ( $cookie_file )) {
$this->cookie_file = $cookie_file;
} else {
fopen ( $cookie_file, 'w' ) or $this->error ( 'The cookie file could not be opened. Make sure this directory has the correct permissions' );
$this->cookie_file = $cookie_file;
fclose ( $this->cookie_file );
}
}
/**
* get方式打开页面
*
* @param unknown $url
* @return mixed
*/
function get($url) {
$process = curl_init ( $url );
curl_setopt ( $process, CURLOPT_HTTPHEADER, $this->headers );
curl_setopt ( $process, CURLOPT_HEADER, 0 );
curl_setopt ( $process, CURLOPT_USERAGENT, $this->user_agent );
if ($this->cookies == TRUE)
curl_setopt ( $process, CURLOPT_COOKIEFILE, $this->cookie_file );
if ($this->cookies == TRUE)
curl_setopt ( $process, CURLOPT_COOKIEJAR, $this->cookie_file );
curl_setopt ( $process, CURLOPT_ENCODING, $this->compression );
curl_setopt ( $process, CURLOPT_TIMEOUT, 30 );
if ($this->proxy)
curl_setopt ( $process, CURLOPT_PROXY, $this->proxy );
curl_setopt ( $process, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $process, CURLOPT_FOLLOWLOCATION, 1 );
$return = curl_exec ( $process );
curl_close ( $process );
return $return;
}
/**
* post 参数提交 data : key=value&key=value
*
* @param unknown $url
* @param unknown $data
* @return mixed
*/
function post($url, $data) {
$process = curl_init ( $url );
curl_setopt ( $process, CURLOPT_HTTPHEADER, $this->headers );
curl_setopt ( $process, CURLOPT_HEADER, 1 );
curl_setopt ( $process, CURLOPT_USERAGENT, $this->user_agent );
if ($this->cookies == TRUE)
curl_setopt ( $process, CURLOPT_COOKIEFILE, $this->cookie_file );
if ($this->cookies == TRUE)
curl_setopt ( $process, CURLOPT_COOKIEJAR, $this->cookie_file );
curl_setopt ( $process, CURLOPT_ENCODING, $this->compression );
curl_setopt ( $process, CURLOPT_TIMEOUT, 30 );
if ($this->proxy)
curl_setopt ( $process, CURLOPT_PROXY, $this->proxy );
curl_setopt ( $process, CURLOPT_POSTFIELDS, $data );
curl_setopt ( $process, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $process, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt ( $process, CURLOPT_POST, 1 );
$return = curl_exec ( $process );
curl_close ( $process );
return $return;
}
function error($error) {
echo "
<center><div style='width:500px;border: 3px solid #FFEEFF; padding: 3px; background-color: #FFDDFF;font-family: verdana; font-size: 10px'><b>cURL Error</b><br>$error</div></center>";
die ();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/strwei/ajvod.git
[email protected]:strwei/ajvod.git
strwei
ajvod
ajvod
master

搜索帮助