PHP でGoCardless の API のバージョンを使用して、Web サイトで支払いを処理しています。ただし、API がエラーを返した場合、ユーザーにより効果的なエラーを表示したいと考えています。
私は途中まで行きましたが、とにかく次のことができるかどうか疑問に思っていました:
次のエラーがある場合:
Array ( [error] => Array ( [0] => リソースは確認済みです ) )
The resource has already been confirmed
PHPでその部分だけを抽出する方法はありますか?
私のコード:
try{
$confirmed_resource = GoCardless::confirm_resource($confirm_params);
}catch(GoCardless_ApiException $e){
$err = 1;
print '<h2>Payment Error</h2>
<p>Server Returned : <code>' . $e->getMessage() . '</code></p>';
}
ありがとう。
更新 1:
例外をトリガーするコード:
$http_response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_response_code < 200 || $http_response_code > 300) {
// Create a string
$message = print_r(json_decode($result, true), true);
// Throw an exception with the error message
throw new GoCardless_ApiException($message, $http_response_code);
}
UPDATE 2 :->print_r($e->getMessage())
出力:
Array ( [error] => Array ( [0] => リソースは確認済みです ) )