Syntax error, unexpected T_SL

后端 未结 6 2768
北海茫月
北海茫月 2021-02-20 08:34

I\'m fairly new to php and I\'m using a script that creates a function called the \"mime_mailer\" which essentially allows me to use PHP to send emails that are able to be desig

6条回答
  •  孤独总比滥情好
    2021-02-20 09:06

    Just had the same problem.

    Turned out to be content on the same line as my opening HERDEOC

    wrong example

    echo <<

    correct example

    echo <<

    Hope this helps someone else!

提交回复
热议问题