首页 > 开发 > PHP > 正文

php实现的Curl封装类Curl.class.php用法实例分析

2024-05-04 23:39:12
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现的Curl封装类Curl.class.php用法,以完整实例形式较为详细的分析了Curl封装类的定义及相关使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现的Curl封装类Curl.class.php用法。分享给大家供大家参考。具体如下:

 

 
  1. <?php 
  2. //curl类 
  3. class Curl 
  4. function Curl(){ 
  5. return true
  6. function execute($method, $url, $fields='', $userAgent='', $httpHeaders='', $username='', $password=''){ 
  7. $ch = Curl::create(); 
  8. if(false === $ch){ 
  9. return false
  10. if(is_string($url) && strlen($url)){ 
  11. $ret = curl_setopt($ch, CURLOPT_URL, $url); 
  12. }else
  13. return false
  14. //是否显示头部信息 
  15. curl_setopt($ch, CURLOPT_HEADER, false); 
  16. // 
  17. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  18. if($username != ''){ 
  19. curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password); 
  20. $method = strtolower($method); 
  21. if('post' == $method){ 
  22. curl_setopt($ch, CURLOPT_POST, true); 
  23. if(is_array($fields)){ 
  24. $sets = array(); 
  25. foreach ($fields AS $key => $val){ 
  26. $sets[] = $key . '=' . urlencode($val); 
  27. $fields = implode('&',$sets); 
  28. curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); 
  29. }else if('put' == $method){ 
  30. curl_setopt($ch, CURLOPT_PUT, true); 
  31. //curl_setopt($ch, CURLOPT_PROGRESS, true); 
  32. //curl_setopt($ch, CURLOPT_VERBOSE, true); 
  33. //curl_setopt($ch, CURLOPT_MUTE, false); 
  34. curl_setopt($ch, CURLOPT_TIMEOUT, 10);//设置curl超时秒数 
  35. if(strlen($userAgent)){ 
  36. curl_setopt($ch, CURLOPT_USERAGENT, $userAgent); 
  37. if(is_array($httpHeaders)){ 
  38. curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeaders); 
  39. $ret = curl_exec($ch); 
  40. if(curl_errno($ch)){ 
  41. curl_close($ch); 
  42. return array(curl_error($ch), curl_errno($ch)); 
  43. }else
  44. curl_close($ch); 
  45. if(!is_string($ret) || !strlen($ret)){ 
  46. return false
  47. return $ret; 
  48. function post($url, $fields, $userAgent = '', $httpHeaders = '', $username = '', $password = ''){ 
  49. $ret = Curl::execute('POST', $url, $fields, $userAgent, $httpHeaders, $username, $password); 
  50. if(false === $ret){ 
  51. return false
  52. if(is_array($ret)){ 
  53. return false
  54. return $ret; 
  55. function get($url, $userAgent = '', $httpHeaders = '', $username = '', $password = ''){ 
  56. $ret = Curl::execute('GET', $url, '', $userAgent, $httpHeaders, $username, $password); 
  57. if(false === $ret){ 
  58. return false
  59. if(is_array($ret)){ 
  60. return false
  61. return $ret; 
  62. function create(){ 
  63. $ch = null
  64. if(!function_exists('curl_init')){ 
  65. return false
  66. $ch = curl_init(); 
  67. if(!is_resource($ch)){ 
  68. return false
  69. return $ch; 
  70. ?> 

GET用法:

 

  
  1. $curl = new Curl(); 
  2. $curl->get('http://www.XXX.com/'); 

POST用法:

 

 
  1. $curl = new Curl(); 
  2. $curl->get('http://www.XXX.com/''p=1&time=0'); 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表