I have an array variable $array like this
$array = Array
         (
            [results] => stdClass Object
            (
              [successc] => stdClass Object
              (
                [926] => stdClass Object
                    (
                        [transaction_id] => xx
                        [transaction_code] => xx
                        [status] => xx
                        [amount] => 5
                    )
              )
              [success] => Array
              (
                [0] => Successful transaction
              )
           )
        )
I want to access the transaction_id element. The 926 is a variable value. It could very well be 927 or 928. It comes from another object $cc. Would it be correct to access the transaction_id using the following code?
$x = $cc->id;
$transaction_id = $array['results']->successc->{$x}->transaction_id;
 
     
    