PHP以post方式访问网址的函数!

用PHP有很多种访问域名的方法,但用以POST的访问,最好还是写成函数比较方便
方法有两种,建议第二种
第一种方法,file_get_content

/** * 发送post请求

* @param string $url 请求地址

* @param array $post_data post键值对数据

* @return string

*/

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' => 'dnwfb',

'password' => 'dnwfb'

);

send_post('http://www.dnwfb.com', $post_data);

还可以用CURL的方法

/**

 * Curl版本

 * 使用方法:

 * $post_string = "app=request&version=beta";

 * curl('https://www.dnwfb.com', $post);

 */

function curl($url, $post) {
$ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $url);
//设置post方式提交
 curl_setopt($ch, CURLOPT_POST, true);
 curl_setopt($ch, CURLOPT_POSTFIELDS,$post);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 $data = curl_exec($ch);
 curl_close($ch);
 return $data;
}
本文链接:https://www.dnwfb.com/1567.html,转载请注明出处。
0

评论0

没有账号? 注册  忘记密码?