Heim >Backend-Entwicklung >PHP-Tutorial >php curl post的简单示例

php curl post的简单示例

WBOY
WBOYOriginal
2016-07-25 08:58:441118Durchsuche
  1. //curl post example

  2. $url = 'http://bbs.it-home.org';
  3. $param1 = "param1";//参数1
  4. $param2 = "param2";//参数2
  5. $param3 = "param3";//参数3
  6. $params = 'param1=' . $param1;

  7. $params = 'param2=' . $param2;
  8. $params = 'param3=' . $param3;
  9. $ch = curl_init( $url );

  10. curl_setopt( $ch, CURLOPT_POST, 1);
  11. curl_setopt( $ch, CURLOPT_POSTFIELDS, $params);
  12. curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
  13. curl_setopt( $ch, CURLOPT_HEADER, 0);
  14. curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
  15. $response = curl_exec( $ch );

  16. echo 'response = '.$response."";
  17. ?>
复制代码

以上代码比较简单,主要用来熟悉下curl的post用法,仅供初学的朋友参考。 程序员之家,祝大家学习进步。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn