1

PHPでAPIを使用しています。このAPIにデータをプッシュする必要があります。たとえば、http://www.api.com/api.php? data = mydataにアクセスすると、「mydata」をAPIにプッシュします。

実際、私はそのデータをURLバーに入力するPHPを使用したいと思っています(これは非常に良いことかもしれません)

前もって感謝します !

4

3 に答える 3

4

これはあなたが必要としますか?

$URL = "http://www.api.com/api.php?data=mydata";
$data = file_get_contents($URL);

データに応答が含まれるようになりました。

于 2013-03-07T14:20:50.443 に答える
4

cURLを見てみましたか?http://php.net/manual/en/book.curl.php

例:

$ch = curl_init();// init curl
curl_setopt($ch, CURLOPT_URL,"http://www.api.com/api.php");
curl_setopt($ch, CURLOPT_POST, 1);// set post data to true
curl_setopt($ch, CURLOPT_POSTFIELDS,"data=mydata&foo=bar");// post data

// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);// gives you a response from the server

$response = curl_exec ($ch);// response it ouputed in the response var

curl_close ($ch);// close curl connection
于 2013-03-07T14:32:46.473 に答える
1

データをPOSTする必要がありますか?http_post_dataをチェックしてください:

http://php.net/manual/en/function.http-post-data.php

于 2013-03-07T14:23:57.010 に答える