我需要使用http://api.remote-server.com/rest/?method=add_user&api_key=123&value=value1等网址调用远程API。如果我将此网址直接粘贴到我的浏览器网址栏中,这样就可以了。我想要的只是通过一个像myscript.php这样的php文件调用这个url。
我不是一个php编码器,我做了一些搜索,但没有找到怎么做(尤其是如何搜索这样的基本情况)。我试过这个例子:
<?php
header("http://api.remote-server.com/rest/?method=add_data&api_key=12345&value=value1");
exit;
?>
但这不起作用。任何线索?
答案 0 :(得分:2)
您可以通过
获取网址<?php
$response = file_get_contents('http://api.remote-server.com/rest/?method=add_user&api_key=123&value=value1');
?>
这样您的服务器就会调用url并将文档保存在$ response中。