我有一个像这样的php文件:
<?php
//recieving json
$sJsonData = @file_get_contents('php://input');
$aPostData = json_decode($sJsonData, true);
//here I need to post the data to another cross domain
$url='http://www.website.org/recieveJson.php'
//
...
?>
在纯PHP中有可能吗?
它仅与json的发送(从某种意义上说是重新发送/重定向)有关。检索部分将由我自己处理。