Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果没有 cURL,我怎么能做到这一点?
我在解析 JSON 字符串时不会遇到问题,但是如何发出 POST 请求以返回包含数据的 json 字符串?
$dataFeed=$_GET["dataFeed"]; $url='urlneedtopostto'; $data=array('data'=>$dataFeed); $jsonString=json_encode($data);
我怎样才能发布这个请求?
也许您可以使用 jQuery 发布请求? http://api.jquery.com/jQuery.post/