首页 > 代码库 > PHP http(file_get_content) GET与POST请求方式
PHP http(file_get_content) GET与POST请求方式
1.GET方式请求
<?php $data = array(‘sParam1‘=>‘test1‘,‘sParam2‘=>101,‘isAuto‘=>1); //定义参数 $data = @http_build_query($data); //把参数转换成URL数据 $aContext = array(‘http‘ => array(‘method‘ => ‘GET‘, ‘header‘ => ‘Content-type: application/x-www-form-urlencoded‘, ‘content‘ => $data )); $cxContext = stream_context_create($aContext); $sUrl = ‘http://www.mytest.com/test.php‘; //此处必须为完整路径 $d = @file_get_contents($sUrl,false,$cxContext); print_r($d); ?>
2.POST方式请求
<?php $data = array(‘sParam1‘=>‘test1‘,‘sParam2‘=>101,‘isAuto‘=>1); //定义参数 $data = @http_build_query($data); //把参数转换成URL数据 $aContext = array(‘http‘ => array(‘method‘ => ‘POST‘, ‘header‘ => ‘Content-type: application/x-www-form-urlencoded‘, ‘content‘ => $data )); $cxContext = stream_context_create($aContext); $sUrl = ‘http://www.mytest.com/test.php‘; //此处必须为完整路径 $d = @file_get_contents($sUrl,false,$cxContext); print_r($d); ?>
PHP http(file_get_content) GET与POST请求方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。