在PHP中访问对象中的变量的正确方法是什么?这些似乎不起作用。
$response = $wepay->request('checkout/create', array(
'account_id' => $account_id,
'amount' => '24.95',
'short_description' => 'A brand new soccer ball',
'type' => 'GOODS',
'mode' => 'regular'
));
// display the response
print_r($response);
//prints stdClass Object ( [checkout_id] => 466761864 [checkout_uri] => https://stage.wepay.com/api/checkout/466761864/6c60270d )
echo $response[checkout_id]; //nothing
echo $response->$checkout_id; //nothing
var_dump(get_object_vars($response)); //nothing
我只需要从$ response获取[checkout_id]和[checkout_uri]。 我是php对象的新手,但是从环顾四周来看,这些都是人们所说的方式,他们只是在这种情况下不工作。对不起,如果这很简单。