发布网友 发布时间:2022-04-06 07:25
共3个回答
热心网友 时间:2022-04-06 08:54
Please note followings:
<?php
$mh=imap_open("{localhost/pop:3110}INBOX"'$user,$pass)
or die("cannot open IMAP stream");
$body=imap_8bit(imap_body($mh,$msg_num));
imap_close($mh) or die("cannot close IMAP stream");
?>
you would add the function your page,you must install the IMAP class of php as precondition.Good luck!!!
参考资料:http://www.imap.org
热心网友 时间:2022-04-06 10:12
web端页面默认编码是什么啊?你就用web端的编码编写php文件。
try it
热心网友 时间:2022-04-06 11:47
加上
header("Content-type:text/html;charset=gb2312");