PHP运行,echo命令不会渲染任何东西

时间:2015-08-02 05:07:25

标签: php echo

我使用php文件使用Mandrill发送电子邮件。我在WAMPServer上测试它。 PHP文件上的所有命令都正确运行,并发送电子邮件。但是,之后的简单echo命令不会在浏览器上呈现任何内容!我错过了什么?

我尝试在代码中添加flush(),并将implicit_flush = On添加到php.ini,但无济于事。

...
$message = new Swift_Message($subject);
      $message->setFrom($from);
      $message->setBody($html, 'text/html');
      $message->setTo($to);
      $message->addPart($text, 'text/plain');

      if ($recipients = $swift->send($message, $failures))
      {
        echo "Message successfully sent!";
      }

0 个答案:

没有答案