ITdaan
首页
最新
原创
最火
收藏夹
写博客
关于
搜索答案
搜索本文相关内容
PHP http(file_get_content) GET与POST请求方式
本文转载自
chaoping315
查看原文
2014/02/09
0
file
/
post
/
get
/
php
/
http
收藏
0
0
1.GET方式请求
[php]
view plain
copy
<?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方式请求
[python]
view plain
copy
<?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请求方式
php file_get_content阿拉伯字符 - php file_get_content Arabic Characters
socket,curl,file_get_content三种HTTP模拟表单提交的方式
xml文件的PHP file_get_content()返回奇怪的数字 - PHP file_get_content() of xml file return weird numbers
在调用SMS API的ajax中没有php curl(GET / POST)/ file_get_content / wget响应 - no php curl(GET/POST)/file_get_content/wget response in ajax calling an SMS API
【No398】四脚猫高级PHP视频课程三个月成就PHP达人
【No296】达内php入门到精通视频教程下载
【No463】布尔教育PHP 入门到实战视频教程
赞助商链接
© 2014-2019 ITdaan.com
粤ICP备14056181号
×
收藏本文
添加到收藏夹 *
赞助商广告