0

使用 PHP 如何获得返回状态。消息是否已收到。我找到了这个文档,但是在使用 PHP 时它不是很有帮助:

http://blog.postageapp.com/tag/php/

我不确定,但这是否有效:

if($this->postageapp->send()==true){ # returns JSON response from the server

//do something, 

}else{

//otherwise

}

谢谢

4

1 回答 1

2

无论调用是否成功,send 方法都会返回一个 JSON 对象。我认为 PHP 总是将这个返回值评估为 true。

因此,您需要检查返回的对象。

$retVal = $this->postageapp->send();
$success = retVal->response->status == 'ok';
于 2012-09-17T08:56:10.367 回答