0

我写了一个小代码来检查我的服务器的速度。但是完成执行需要将近 60 秒。

<?php


     $start=time();

     $to = "test@gmail.com";

     $subject = "This is subject";

     $message = "<b>This is HTML message.</b>";
     $message .= "<h1>This is headline.</h1>";

     $header = "From:test@mydomain.com \r\n";
     $header .= "MIME-Version: 1.0\r\n";
     $header .= "Content-type: text/html\r\n";

     $retval = mail ($to,$subject,$message,$header);

     if( $retval == true ) {
        echo "Message sent successfully...";
     }else {
        echo "Message could not be sent...";
     }

     $after=time();
     $total=$after-$start;
     echo "</br>";
     echo "Total execution time : ".$total." seconds";
?>

可能是什么原因?以及如何提高执行时间?我已经增加了 php.ini 文件中的内存限制。

4

1 回答 1

0

这是 sendmail 邮件服务器的问题。安装 postfix 邮件服务器解决了这个问题。

于 2016-06-30T19:23:54.690 回答