php imap类var_dump的echo输出

时间:2014-12-01 20:51:14

标签: php class imap

我很想从我的var转储中获取日期。 我正在使用:https://github.com/barbushin/php-imap 并希望获得数据输出。 我怎么能回声"这到php"?

object(IncomingMail)#10 (12) { 
    ["id"]=> string(4) "2937" 
    ["date"]=> string(19) "2014-12-01 10:44:24" 
    ["subject"]=> string(4) "roos" 
    ["fromName"]=> string(23) "test" 
    ["fromAddress"]=> string(15) "test" 
    ["to"]=> array(1) { ["test"]=> NULL } 
    ["toString"]=> string(21) "test" 
    ["cc"]=> array(0) { } 
    ["replyTo"]=> array(1) { 
    ["-------"]=> string(23) "test" } 
    ["textPlain"]=> string(5) " " 
    ["textHtml"]=> string(1612) "

添加了更多代码:

// Get some mail
$mail = $mailbox->getMail($uid);
var_dump($mail);
var_dump($mail->getAttachments()); 

由于

0 个答案:

没有答案