i got the following array:
$resultaat= array('AfterPay Result' => $Afterpay->order_result);
And i get the following output:
    Array
(
    [AfterPay Result] => stdClass Object
        (
            [return] => stdClass Object
                (
                    [afterPayOrderReference] => 928241d9d1dfb45d7513f3bbb8f063
                    [checksum] => 8452479310a82dc9a8ce574e6ce180f4
                    [resultId] => 0
                    [statusCode] => A
                    [timestampIn] => 1445938695282
                    [timestampOut] => 1445938700423
                    [transactionId] => 450831
                )
        )
)
How do i retrieve the value: 'statusCode' and the value 'resultId' so i can save them in my database.
can someone please help me?
 
     
     
    