ホームページ > バックエンド開発 > PHPチュートリアル > PHP が POST リクエストを送信する

PHP が POST リクエストを送信する

WBOY
リリース: 2016-07-29 09:02:06
オリジナル
993 人が閲覧しました
  1. /**
  2. * 投稿リクエストを送信
  3. * @param string $url リクエストアドレス
  4. * @param array $post_data キーと値のペアのデータを投稿
  5. *@文字列を返します
  6. */
  7. function send_post($url, $post_data) {
  8. $postdata = http_build_query( $post_data);  
  9. $options = array(
  10. 'http' => array(
  11. 「メソッド」 => 「POST」
  12. 'header' => 'Content-type:application/x-www-form-urlencoded',
  13. 'content' => $postdata,
  14. 」タイムアウト' => 15 * 60 // 超時間间(单位:s)
  15. )
  16. );  
  17. $context = stream_context_create($options);  
  18. $result = file_get_contents($url, false, $context);  
  19. return $result;  
  20. }  
  21. //使用メソッド
  22. $post_data = array(
  23. 'ユーザー名' => 'stclair2201'
  24. 'パスワード' => '邯鄲'
  25. );  
  26. send_post('http://www.qianyunlai.com', $post_data);  
  27. /**
  28. * ソケットのバージョン
  29. * 使用方法:
  30. * $post_string = "app=socket&version=beta";
  31. * request_by_socket('chajia8. com ', '/restServer.php', $post_string);
  32. */
  33. function request_by_socket($remote_server ,$remote_path,$post_string,$port = 80,$timeout = 30) {
  34. $socket = fsockopen($re mote_server$port$errno$errstr$timeout);  
  35. if (!$socket) die("$errstr($errno)");  
  36. fwrite($socket, "POST $remote_path HTTP/1.0");  
  37. fwrite($socket, "ユーザーエージェント: ソケット 例");  
  38. fwrite($socket, "HOST: $remote_server");  
  39. fwrite($socket, "Content-type: application/x-www-form-urlencoded");  
  40. fwrite($socket, "Content-length: " . (strlen($post_string) + 8) . "");  
  41. fwrite($socket, "Accept:*/*");  
  42. fwrite($socket, "");  
  43. fwrite($socket, "mypost=$post_string");  
  44. fwrite($socket, "");  
  45. $header = "";  
  46. while ($str = trim(fgets($socket, 4096))) {
  47. $header .= $str;  
  48. }
  49. $data = "";  
  50. while (!feof($socket)) {
  51. $data .= fgets($socket, 40 96);  
  52. }
  53. return $data;  
  54. }  
  55. ?>  
  56. /**
  57. * Curl バージョン
  58. * 使用方法:
  59. * $post_string = "app=request&version=beta"
  60. * request_by_curl( 「http://www」 .qianyunlai.com/restServer.php'$post_string);*/
  61. function request_by_curl($remote_server
  62. ,
  63. $post_string) { $ ch = curl_init();  
  64. curl_setopt($ch, CURLOPT_URL, $remote_server
  65. );  
  66. curl_setopt($ch, CURLOPT_POSTFIELDS, 'mypost='
  67. .
  68. $post_string);   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
  69. curl_setopt($ch, CURLOPT_USERAGENT, "qianyunlai.comの CURL サンプル ベータ版"
  70. );  
  71. $data = curl_exec($ch
  72. );  
  73. curl_close($ch);  
  74. return $data
  75. ;  
  76. }
  77. ?>  
  78. 翻訳地址:http://blog.sjzycxx.cn/post/435/

以上、PHP が側面の内容を含む POST リクエストを送信する方法を説明しました。PHP の教育に関心のある友人の助けになることを望みます。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート