2017-06-26 60 views
0

我发现这个代码,工作差不多大,但我需要它:PHP - IMAP:附件保存到特定的文件夹

1(MUST)保存附件到特定文件夹的服务器上,而不是在那里该.php文件是。

2.(如果可能)此时代码会生成一些零字节大小的文件。 (我可以写的东西,检查文件大小,然后删除那些零大小的文件,但我想从可能的话在第一时间创建阻止它。

<?php 

    function getFileExtension($fileName){ 
     $parts=explode(".",$fileName); 
     return $parts[count($parts)-1]; 
    } 

    $imap = imap_open($server, $username, $password) or die("imap connection error"); 
    $message_count = imap_num_msg($imap); 
    for ($m = 1; $m <= $message_count; ++$m){ 

     $header = imap_header($imap, $m); 
     //print_r($header); 

     $email[$m]['from'] = $header->from[0]->mailbox.'@'.$header->from[0]->host; 
     $email[$m]['fromaddress'] = $header->from[0]->personal; 
     $email[$m]['to'] = $header->to[0]->mailbox; 
     $email[$m]['subject'] = $header->subject; 
     $email[$m]['message_id'] = $header->message_id; 
     $email[$m]['date'] = $header->udate; 

     $from = $email[$m]['fromaddress']; 
     $from_email = $email[$m]['from']; 
     $to = $email[$m]['to']; 
     $subject = $email[$m]['subject']; 

     echo $from_email . '</br>'; 
     echo $to . '</br>'; 
     echo $subject . '</br>'; 

     $structure = imap_fetchstructure($imap, $m); 

     $attachments = array(); 
     if(isset($structure->parts) && count($structure->parts)) { 

      for($i = 0; $i < count($structure->parts); $i++) { 

       $attachments[$i] = array(
        'is_attachment' => false, 
        'filename' => '', 
        'name' => '', 
        'attachment' => '' 
       ); 

       if($structure->parts[$i]->ifdparameters) { 
        foreach($structure->parts[$i]->dparameters as $object) { 
         if(strtolower($object->attribute) == 'filename') { 
          $attachments[$i]['is_attachment'] = true; 
          $attachments[$i]['filename'] = $object->value; 
         } 
        } 
       } 

       if($structure->parts[$i]->ifparameters) { 
        foreach($structure->parts[$i]->parameters as $object) { 
         if(strtolower($object->attribute) == 'name') { 
          $attachments[$i]['is_attachment'] = true; 
          $attachments[$i]['name'] = $object->value; 
         } 
        } 
       } 

       if($attachments[$i]['is_attachment']) { 
        $attachments[$i]['attachment'] = imap_fetchbody($imap, $m, $i+1); 
        if($structure->parts[$i]->encoding == 3) { // 3 = BASE64 
         $attachments[$i]['attachment'] = base64_decode($attachments[$i]['attachment']); 
        } 
        elseif($structure->parts[$i]->encoding == 4) { // 4 = QUOTED-PRINTABLE 
         $attachments[$i]['attachment'] = quoted_printable_decode($attachments[$i]['attachment']); 
        } 
       } 
      } 
     } 

     foreach ($attachments as $key => $attachment) { 
      $name = $attachment['name']; 
      $contents = $attachment['attachment']; 
      file_put_contents($name, $contents); 
     } 

     //imap_setflag_full($imap, $i, "\\Seen"); 
     //imap_mail_move($imap, $i, 'Trash'); 
    } 

    imap_close($imap); 

    ?> 
+0

从你的代码来创建它,我不能让在其中创建零页大小的文件的想法,但是我写了一个答案,可以帮助你移动文件。欢呼 –

+0

@ShobiPP以防止0byte文件,在foreach循环之外添加'file_put_contents($ name,$ contents);'。 – Mike

回答

2

你可以写文件任何你喜欢的文件夹时,rename()功能可用于此目的

http://php.net/manual/en/function.rename.php

rename('image1.jpg', 'del/image1.jpg'); 

如果你想保持在同一个地方现有的文件,你应该使用复制

http://php.net/manual/en/function.copy.php

copy('image1.jpg', 'del/image1.jpg'); 

可以使用代码后put_file_contents()到文件走动目录/文件夹

编辑:在其他目录下创建文件,而不是创建后移动它

file_put_contents('./myDir/myFile', $file); 

其中.代表项目的当前目录。

此外,请记住file_put_contents()不创建文件夹/他们需要现有目录或需要使用mkdir()

+0

感谢您的回答:因此,现在它将保存到.php文件所在的目录中,有没有办法将它保存到不同目录而无需移动/复制/删除它?再次感谢。 – compcobalt

+0

编辑答案请检查 –