我使用我的CRM的API來接收聯繫人。現在,我要訪問的聯繫人的電子郵件地址:PHP中stdClass對象的訪問變量
$result = $api->findContacts($params);
print_r($result[0]->email);
回報......
stdClass Object (
[0] => [email protected]
[--primary] => [email protected]
)
如何才能獲得通過PHP存儲在[--primary]的電子郵件地址?我試過$ result [0] - > email - > - primary等,但不起作用。
感謝
請不要直接訪問這些變量。創建一個函數來返回它們。 – Peon 2012-08-02 09:09:33