$host = 'outlook.office365.com';
$port = '995';
$username = 'test@hotmail.com';
$password ='testpassword';
$connection1 = imap_open('{'.$host.':'.$port.'/ssl/novalidate-cert}INBOX',
$username, $password) or die('Cannot connect to Hotmail: ' .
imap_last_error());
在端口993(IMAP)上可以正常工作,但不能用于SSL。我不确定SSL连接埠后会使用什么参数。