php中curl的使用

回复 收藏
php
参考 :http://lelong.iteye.com/blog/538645
http://developer.51cto.com/art/200904/121739.htm
  1. <?php
  2. $domain = 'http://www.112.com/';
  3. $file = 'abc/back.gif';
  4. $curlPost = $domain . $file;
  5. $ch = curl_init();
  6. curl_setopt($ch, CURLOPT_URL, "http://10.2.1.1/api_refresh_files?op=fresh");
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  8. curl_setopt($ch, CURLOPT_POST, 1);
  9. curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
  10. $output = curl_exec($ch);
  11. //$response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  12. curl_close($ch);
  13. echo $output;
  14. ?>
2013-03-12 16:32 举报
已邀请:
0

nihao426181

赞同来自:

^^^^^^^^^^^^^^^^^^^^^^^^^
0

nihao426181

赞同来自:

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: