我们使用file_get_contents与Web服务进行通信,Web服务创建用户,如果成功,则返回带有新创建用户详细信息的JSON对象。 下面的代码显示了我们是如何做到的,用户已成功创建,这意味着我们可以从后端看到它,但是,我们无法获得JSON响应,它不返回任何内容。 / p>
public function register(){
$username = "testing";
$email = "testingemail@test.com";
$password = "testpsd";
$userData = '{"$xmlns": {"pluser": "http://xml.webservice.com/auth/data/User"},'
.'"pluser$userName": "'.$username.'",'
.'"pluser$password": "'.$password.'",'
.'"pluser$fullName": "fullname",'
.'"pluser$email": "'.$email.'"}';
$url = 'https://webservice.com?form=json';
$cparams = array('http' => array('method' => 'POST','ignore_errors' => true));
$cparams['http']['content'] = $userData;
$cparams['http']['request_fulluri'] = true;
$cparams['http']['header'] = 'Content-type: application/json';
$context = stream_context_create($cparams);
$fp = @file_get_contents($url,false,$context);$res = stream_get_contents($fp);
print_r($res);
}
起初我们认为Web服务应该什么都不返回,所以我们在c#中对它进行了测试,它工作得非常好,这意味着我们得到了像{“stutas”:“success”,“userCreated”这样的创建响应: “真正”} 这是c#代码:
String url = "https://webservice.com?form=json";
HttpWebRequest req = (HttpWebRequest) WebRequest.Create(url);
req.Method = "POST";
string strRequest = "exactly the same json string";
req.ContentLength = strRequest.Length;
StreamWriter streamOut = new StreamWriter(req.GetRequestStream(), System.Text.Encoding.ASCII);
streamOut.Write(strRequest);
streamOut.Close();
StreamReader streamIn = new StreamReader(req.GetResponse().GetResponseStream());
while (!streamIn.EndOfStream)
Console.WriteLine(streamIn.ReadToEnd());
streamIn.Close();
Console.ReadKey();}
php代码中是否有任何遗漏或配置错误?
答案 0 :(得分:1)
PHP函数file_get_contents
将获取响应的全部内容。您不需要$res = stream_get_contents($fp)
。回复已经在$fp
。
你可以这样做:
$fp = @file_get_contents($url,false,$context);
print_r($fp);