PHPでimapを使用してメールを取得すると、メール本文のコンテンツが表示されますが、メール本文に貼り付けられて添付されていないインライン画像を抽出できません。
質問する
6909 次
2 に答える
2
電子メール コンテンツの本文で画像を検索します。
メールの本文が であるとすると、$body
preg_match を使用して画像の URL を取得できます。この preg_match 式を使用して、画像ソースを取得します。
preg_match('/< *img[^>]*src *= *["\']?([^"\']*)/i', $body, $matches);
于 2013-02-22T12:40:29.647 に答える
1
ねえ、私は解決策を得たと思います
<?php
$hostname = '{myserver/pop3/novalidate-cert}INBOX';
$username = 'username';
$password = 'password';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error());
$msgno = 0; //message id
$no_of_occurences = 0;
$intStatic = 2;//to initialize the mail body section
$decode = imap_fetchbody($mbox, $msgno , "");
$no_of_occurences = substr_count($decode,"Content-Transfer-Encoding: base64");//to get the no of images
if($no_of_occurences > 0){
for($i = 0; $i < $no_of_occurences; $i++){
$strChange = strval($intStatic+$i);
$decode = imap_fetchbody($mbox, $msgno , $strChange);//to get the base64 encoded string for the image
$data = base64_decode($decode);
$fName = time()."_".$strChange . '.gif';
$file = $fName;
$success = file_put_contents($file, $data); //creates the physical image
}
}
imap_close($inbox);
?>
于 2013-02-25T08:53:50.657 に答える