GET Request from PHP using file_get_contents with parameters

拟墨画扇 提交于 2019-11-27 07:46:22

问题


I want to send a GET request to an external site, but also want to send some parameters

for example i've to send a get request to example.com

i want to execute www.example.com/send.php?uid=1&pwd=2&msg=3&phone=3&provider=xyz

My code is :

$getdata = http_build_query(
array(
    'uid' => '1',
    'pwd' => '2',
 'msg'=>'3',
 'phone'=>'9999',
 'provider'=>'xyz'
 )
);

$opts = array('http' =>
 array(
    'method'  => 'GET',
    'content' => $getdata
)
);

$context  = stream_context_create($opts);

$result = file_get_contents('http://example.com/send.php', false, $context);

I get a server error .


回答1:


The content option is used with POST and PUT requests. For GET you can just append it as a query string:

file_get_contents('http://example.com/send.php?'.$getdata, false, $context);

Furthermore, the method defaults to GET so you don't even need to set options, nor create a stream context. So, for this particular situation, you could simply call file_get_contents with the first parameter if you wish.



来源:https://stackoverflow.com/questions/7352832/get-request-from-php-using-file-get-contents-with-parameters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!