问题 I have this code block iterating through the Twilio Message list.. but I keep getting null for DateSent (or DateCreated ), I'm looking to get bakc the timestamp of the message. Everything else (the other fields , from, to , body all work fine) $client = new Services_Twilio($twilio['sid'],$twilio['token']); // Loop over the list of messages echo each key property foreach ($client->account->messages as $message) { $list_sms_messages[]=array('timestamp'=>$message->dateSent, 'from'=>$message-