记一个php中heredoc引起的语法问题syntax error, unexpected end of file1.问题2.解决
1.问题使用了heredoc后,本地运行没有问题,进入服务器运行会出问题2.解决https://www.php.net/manual/zh/language.types.string.php#language.types.string.syntax.heredoc要注意的是结束标识符这行除了有一个分号(;)外,绝对不能包含其它字符。这意味着标识符不能缩进,分号的前后也不能有任何空白或制表符。更重要的是结束标识符的前面必须是个被本地操作系统认可的换行,比如在 UNIX ..