我已经通过base64编码和8位编码发送的电子邮件。 我想知道我怎么能检查使用消息imap_fetchstructure的编码(做这个做了约两个小时,这样就失去了),然后将其正确解码。
Gmail和邮箱(iOS上的应用程序)的,而Windows 8中的邮件应用程序正在发送它为Base64发送它作为8位。 无论哪种方式,我需要通过检测已经使用什么类型的编码它的解码是否其8位或Base64。
使用PHP 5.1.6(是的,我应该更新,一直在忙)。
我真的没有代码来显示。 这是我的全部:
<?php
$hostname = '{********:993/imap/ssl}INBOX';
$username = '*********';
$password = '******';
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to server: ' . imap_last_error());
$emails = imap_search($inbox,'ALL');
if($emails) {
$output = '';
rsort($emails);
foreach($emails as $email_number) {
$overview = imap_fetch_overview($inbox,$email_number,0);
$message = imap_fetchbody($inbox,$email_number,2);
$struct = imap_fetchstructure($inbox, $email_number);
$output.= '<div class="toggle'.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
$output.= '<span class="from">'.$overview[0]->from.'</span>';
$output.= '<span class="date">on '.$overview[0]->date.'</span>';
$output.= '</div>';
/* output the email body */
$output.= '<div class="body">'.$message.'</div>';
}
echo $output;
}
imap_close($inbox);
?>
imap_bodystruct()或imap_fetchstructure()应该返回这个信息给你。 下面的代码应该做的正是你要寻找的:
<?php
$hostname = '{********:993/imap/ssl}INBOX';
$username = '*********';
$password = '******';
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to server: ' . imap_last_error());
$emails = imap_search($inbox,'ALL');
if($emails) {
$output = '';
rsort($emails);
foreach($emails as $email_number) {
$overview = imap_fetch_overview($inbox,$email_number,0);
$structure = imap_fetchstructure($inbox, $email_number);
if(isset($structure->parts) && is_array($structure->parts) && isset($structure->parts[1])) {
$part = $structure->parts[1];
$message = imap_fetchbody($inbox,$email_number,2);
if($part->encoding == 3) {
$message = imap_base64($message);
} else if($part->encoding == 1) {
$message = imap_8bit($message);
} else {
$message = imap_qprint($message);
}
}
$output.= '<div class="toggle'.($overview[0]->seen ? 'read' : 'unread').'">';
$output.= '<span class="from">From: '.utf8_decode(imap_utf8($overview[0]->from)).'</span>';
$output.= '<span class="date">on '.utf8_decode(imap_utf8($overview[0]->date)).'</span>';
$output.= '<br /><span class="subject">Subject('.$part->encoding.'): '.utf8_decode(imap_utf8($overview[0]->subject)).'</span> ';
$output.= '</div>';
$output.= '<div class="body">'.$message.'</div><hr />';
}
echo $output;
}
imap_close($inbox);
?>
你可以看看下面这个例子。
IMAP / IMAP
这里的代码片段
switch ($encoding) {
# 7BIT
case 0:
return $text;
# 8BIT
case 1:
return quoted_printable_decode(imap_8bit($text));
# BINARY
case 2:
return imap_binary($text);
# BASE64
case 3:
return imap_base64($text);
# QUOTED-PRINTABLE
case 4:
return quoted_printable_decode($text);
# OTHER
case 5:
return $text;
# UNKNOWN
default:
return $text;
}
对于imap_fetchstructure返回的对象()
- 编码(身体传输编码)
传输编码(可与使用的库变化)
0 7BIT 1个8BIT 2 BINARY 3 BASE64 4引用打印5 OTHER
$s = imap_fetchstructure($mbox,$mid);
if ($s->encoding==3)
$data = base64_decode($data);