PHP CURL模拟GET及POST函数代码
作者:bea
代码如下: <?php function vcurl($url, $post = '', $cookie = '', $cookiejar = '', $referer = ''){ $tmpInfo = ''; $cookiepath = getcwd().'./'.$cookiejar; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CUR
代码如下:
<?php
function vcurl($url, $post = '', $cookie = '', $cookiejar = '', $referer = ''){
$tmpInfo = '';
$cookiepath = getcwd().'./'.$cookiejar;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
if($referer) {
curl_setopt($curl, CURLOPT_REFERER, $referer);
} else {
curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
}
if($post) {
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
}
if($cookie) {
curl_setopt($curl, CURLOPT_COOKIE, $cookie);
}
if($cookiejar) {
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiepath);
curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiepath);
}
//curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl, CURLOPT_TIMEOUT, 100);
curl_setopt($curl, CURLOPT_HEADER, 0);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$tmpInfo = curl_exec($curl);
if (curl_errno($curl)) {
echo '<pre><b>错误:</b><br />'.curl_error($curl);
}
curl_close($curl);
return $tmpInfo;
}
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- mayfish 数据入库验证代码
- 在PHP中操作Excel实例代码
- PHP 图片上传实现代码 带详细注释
- PHP 字符串加密函数(在指定时间内加密还原字符串,超时无法还原)
- PHP中冒号、endif、endwhile、endfor使用介绍
- PHP 文件上传全攻略
- PHP GD 图像处理组件的常用函数总结
- PHP 开发环境配置(测试开发环境)
- PHP 开发环境配置(Zend Studio)
- PHP 开发环境配置(Zend Server安装)
- PHP开发环境配置(MySQL数据库安装图文教程)
- PHP PDO函数库详解
- PHP执行linux系统命令的常用函数使用说明
- asp.net Repeater控件的说明及详细介绍及使用方法
- php 使用post,get的一种简洁方式
- Windows下安装Memcached的步骤说明
- PHP 文件缓存的性能测试
- PHP 中文处理技巧
- php快速url重写更新版[需php 5.30以上]