-1

我确实有这个链接:' http: //www.domainname.com/employee=name ' 当我把它放在浏览器上它返回这个输出: ["steve", "charles", "Micheal"] 我如何使用 php 卷曲这个链接

谢谢,

4

2 回答 2

1

试试这个:

$output=json_decode(file_get_contents("http://www.domainname.com/employee=name"),true);

于 2013-05-13T17:59:39.603 回答
1
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, "$URL");
$ANSWER=curl_exec ($curl);
curl_close ($curl);
于 2013-05-13T18:02:06.610 回答