Simulate post for URL requests

Source: Internet
Author: User

/**
*SimulationPostForUrlRequest
*@paramString $url
*@paramArray $post _data
*@returnBool|mixed
*/
functionRequest_post ($url=‘‘,$post _data=Array())
{
If(Empty($url) ||Empty($post _data)) {
return False;
}
$str="";
Foreach($post _dataAs$key=$val) {
$str.="$key=".UrlEncode($val)."&";
}
$post=Substr($str,0, -1);
$options=Array(
Curlopt_returntransfer=True,//Sets the information obtained in the form of a file stream, rather than directly outputting
Curlopt_header=False,//Whether to export header file information as a data stream when enabled
Curlopt_post=True,//When enabled, it sends a regularPOSTRequest, type is:application/x-www-form-urlencoded, just like the form submitted
Curlopt_postfields=$post,//After processing the pseudoPostPassing arrays
Curlopt_url=$url//You need to get theUrlAddress
);
$ch = curl_init (); //curl
Curl_setopt_array ( $ch , $options );
$data = curl_exec ( $ch );
curl_close ( $ch );
return $data ;
} /span>

Impersonate a post for a URL request

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.