语法错误,意外的T_SL

时间:2011-03-24 08:20:03

标签: mime php

我对php很新,我使用的脚本创建了一个名为“mime_mailer”的函数,它实际上允许我使用PHP发送能够使用CSS设计的电子邮件而不仅仅是纯文本。

然而,在我的注册脚本中,我尝试编写一些发送CSS电子邮件的代码,但是我收到一条错误消息,指出存在语法错误。有人可以请我填一下这个吗?

            $subject = "Your Red-line Account";
    $css     = "body{ color: #090127; background-color: #f0f0f0; }"; 
    $to     =   $usercheck;

    //Message
    $message =<<<END 
                <html>
                    <head>
                        <title>
                            Red-line
                        </title>
                    </head>
                    <body>
                        <p>
                            Hi $first_name, 
                        </p> 

                        <p>
                            Your Red-line account is almost complete. To finish, go to <a href='www.thered-line.com'>The Red-line</a> and enter your eight digit confirmation code.
                        </p> 

                        <p>
                            Your confirmation code is: <b>$code</b>
                        </p> 

                        <p>
                            Sincerely,
                        </p> <br />

                        <p>
                            The Red-line Operator
                        </p> 
                    </body>
                </html>
            END;

                    //  To send HTML mail, the Content-type header must be set
        $headers    =   'MIME-Version: 1.0' . "\r\n";
        $headers    .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

                    //  Additional headers
        $headers    .=  "From: The Red-line <messages@theredline.com>\r\n";
        $headers    .=  "To: $first_name $last_name <$usercheck>\r\n";

                    //  Mail it
        require_once("function_mime_mailer.php");


        mime_mailer($to, $subject, $message, $headers, NULL, $css); 
}

以下是“function_mime_mailer.php”文件的代码。

  if(basename(__FILE__) == basename($_SERVER['PHP_SELF'])) send_404(); // stop http access           to         this file

 function mime_mailer($to, $subject, $message, $headers = NULL, $attachments = NULL, $css = NULL)
 {
       if(!preg_match('/^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-        z]{2,6})$/', $to)) return FALSE;
if(preg_match('/<(html|head|body|div|a|h|p|table|br|img|b|hr|ol|ul|span|pre|i|form)[^>]*[^>]*>/i', $message)) $html = TRUE;

 if(stristr($message, '<body')) $message = stristr($message, '<body');
     $message = delete_local_links($message);
 if(empty($headers)){
     $headers = "MIME-Version: 1.0\n";
 }else{
     $headers.= "\nMIME-Version: 1.0\n";
 }
 if(empty($html)){
     $result = plain_text($message);
 }elseif(isset($html) and $html == TRUE){
     if(!isset($css)) $css = NULL;
     if(preg_match('/<img[^>]+>/i', $message)){
       $result = multipart_related($message, $css);
   }else{
       $result = multipart_alternative($message, $css);
   }
 }
 $result['message'] = delete_non_cid_images($result['message']);
 if(!empty($attachments)){
   $parts = attachments($attachments);
   array_unshift($parts, implode('', $result));
   $result = multipart_mixed($parts);
 }
$headers = $headers.$result['headers'];
//print '<pre>'.htmlspecialchars($headers.$result['message']).'</pre>';exit;
if(mail($to, $subject, $result['message'], $headers)) return TRUE;
return FALSE;
}
?> 

6 个答案:

答案 0 :(得分:20)

遇到同样的问题。

原来与我开设的HERDEOC相同的内容

错误的例子

echo <<<HEREDOC code started on this line
HEREDOC;

正确的例子

echo <<<HEREDOC
code should have started on this line
HEREDOC;

希望这有助于其他人!

答案 1 :(得分:12)

查看List of Parser tokens

T_SL<<的引用。

在使用END;之前,不应使用制表符或空格。看看this huge warning

答案 2 :(得分:2)

附注,但可能会帮助某人:糟糕的git合并会导致这种情况。考虑:

function foo
    <<<<<<< HEAD
    $bar = 1;
    <<<<<<<  e0f2213bc34d43ef
    $bar = 2;

PHP解析器会产生相同的错误。

来源:刚刚得到这个;)

答案 3 :(得分:1)

你使用的是什么版本的php? nowdoc语法仅在PHP 5.3.0之后有效。 参见手册: http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.nowdoc

答案 4 :(得分:0)

function_mime_mailer.php中有一个错误:

if(empty($headers)){
   $headers = "MIME-Version: 1.0\n";
}else{
   $headers.= "\nMIME-Version: 1.0\n";
}

应该是

if(empty($headers)){
   $headers = "MIME-Version: 1.0\r\n";
}else{
   $headers.= "\r\nMIME-Version: 1.0\r\n";
}

另外,如果你包含MIME-Version标题,那么该函数将再次包含它 - 实际上有两个。

答案 5 :(得分:0)

它有完全相同的问题,但是我的原因是因为我的heredoc末尾的第一行有空格:

$var = <<< HTML(whitespaces here caused the error)
stuff in here

HTML;

来源:http://realtechtalk.com/_syntax_error_unexpected_T_SL_in_PHP_Solution-2109-articles