php file_get_contents post 发送解决办法
内容摘要
这篇文章主要为大家详细介绍了php file_get_contents post 发送简单示例,具有一定的参考价值,可以用来参考一下。
对phpfile_get_contents post 发送简单示例对此感兴趣的朋
对phpfile_get_contents post 发送简单示例对此感兴趣的朋
文章正文
这篇文章主要为大家详细介绍了php file_get_contents post 发送简单示例,具有一定的参考价值,可以用来参考一下。
对phpfile_get_contents post 发送简单示例对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
*
* @param
* @arrange (www.idcnote.com)
**/
function post($url, $post = null)
{
$context = array();
if (is_array($post))
{
ksort($post);
$context['http'] = array
(
'method' => 'post',
'content' => http_build_query($post, '', '&'),
);
}
return file_get_contents($url, false, stream_context_create($context));
}
$data = array
(
'name' => 'test',
'email' => 'test@gmail.com',
'submit' => 'submit',
);
echo post('http://localhost/5-5/request_post_result.php', $data);
注:关于php file_get_contents post 发送简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释