乐趣区

PHP发送POST请求

PHP 发送 POST 请求


function send_post($url, $post_data) {$postdata = http_build_query($post_data);
  $options = array(
    'http' => array(
      'method' => 'POST',
      'header' => 'Content-type:application/x-www-form-urlencoded',
      'content' => $postdata,
      'timeout' => 15 * 60 // 超时时间(单位:s))
  );
  $context = stream_context_create($options);
  $result = file_get_contents($url, false, $context);
  return $result;
};

// 使用方法
$post_data = array(
  'username' => '小小书童',
  'password' => '123456'
);
send_post('http://apppay.xyz', $post_data);

作者:小小书童
网站:http://apppay.xyz
学习交流 QQ:754219009

退出移动版