本文主要是介绍PHP调用http协议地址(aspx页面),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
$c_url="http://www.gysoft.cn/smspost_utf8/send.aspx?username=".$this->username."&password=".$this->pwd."&mobile=".$user->mobilephone."&content=".$message;
$result=$this->HttpRequest($c_url);
//运用http调用的GET方法
public function HttpRequest($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 2);
curl_setopt($ch, CURLOPT_HEADER, 0); //如果设为0,则不使用header
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
这篇关于PHP调用http协议地址(aspx页面)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!