如何使用JSON字符串发出POST请求?

时间:2012-08-13 09:47:01

标签: php json http post

如果没有cURL,我怎么能这样做?

我不会在解析JSON字符串时遇到问题但是如何使用一个POST请求来返回包含数据的json字符串?

$dataFeed=$_GET["dataFeed"]; 
$url='urlneedtopostto';

$data=array('data'=>$dataFeed);
$jsonString=json_encode($data);

我如何发布请求?

1 个答案:

答案 0 :(得分:0)

也许您可以使用jQuery帖子请求? http://api.jquery.com/jQuery.post/