共计 495 个字符,预计需要花费 2 分钟才能阅读完成。
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
正文完