Home > php教程 > php手册 > php:统计邮件的大小方法

php:统计邮件的大小方法

WBOY
Release: 2016-06-13 10:54:09
Original
787 people have browsed it

//统计用户收件箱所占空间有多少,先计算每封邮件的大小(标题+内容+附近),后总和;

//1、计算附近大小;

//2、计算标题和内容大小

//3、总和求出单封邮件大小

eg:

[php]  

    $attach_size= 0;      

    if($attachmentid){  //获取附近的大小      

        $attach_data= attachdata($attachmentid);      

        if($attach_data){      

            foreach($attach_dataas$value) {      

                $attach_size+= $value['filesize'];      

            }      

        }      

    }      

    //获取标题和邮件内容的大小      

    $email_content_size= 0;      

    $_filename= "attachment/emailsizecalculate.tmp";      

    $_file= fopen($_filename, "wb");      

    fwrite($_file, $subject.$content);      

    fclose($_file);      

    if($_temp= filesize($_filename)){      

        $email_content_size= $_temp;      

    }      

    $del_ret= @unlink($_filename);      

    $sum_size= $attach_size*1024 + $email_content_size;  //邮件总大小             

?>  

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template