2012-09-04 46 views
0

使用PHP如何獲得返回狀態。信息是否已收到。我發現這個文件,但它使用PHP的時候是不是非常有幫助:PostageApp電子郵件,它們是否已發送

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

我不知道,但是這將是有效的:

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

//do something, 

}else{ 

//otherwise 

} 

感謝

+0

使用'var_dump($ this-> postageapp-> send())'結合成功和不成功的嘗試。 –

回答

2

的發送方法返回一個JSON對象,無論調用是否成功。我認爲PHP總是評估這個回報是真實的。

因此,您需要檢查返回的對象。

$retVal = $this->postageapp->send(); 
$success = retVal->response->status == 'ok'; 
相關問題