使用PHP如何获得返回状态。是否已收到消息。我找到了这个文档,但在使用PHP时它没有用处:
http://blog.postageapp.com/tag/php/
我不确定,但这是否有效:
if($this->postageapp->send()==true){ # returns JSON response from the server
//do something,
}else{
//otherwise
}
由于
答案 0 :(得分:2)
无论调用是否成功,send方法都会返回JSON对象。我认为PHP总是评估这个回报是真的。
因此,您需要检查返回的对象。
$retVal = $this->postageapp->send();
$success = retVal->response->status == 'ok';