本文主要是介绍PHP函数file_get_contents自定义提交post数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*** post提交数据* @param string $url 请求Url* @param array $datas 提交的数据* @return url响应返回的html*/ function sendPost($url, $datas) {$postdata = http_build_query($datas);$opts = array('http' =>array('method' => 'POST','header' => 'Content-type: application/x-www-form-urlencoded','content' => $postdata,'timeout' => 5));$context = stream_context_create($opts);$result = file_get_contents($url, false, $context);return $result; }
这篇关于PHP函数file_get_contents自定义提交post数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!