10

我不断收到以下错误:

解析错误:语法错误,第 70 行 /home/a4999406/public_html/willingLog.html 中的意外 T_SL

在以下代码上(第一行是第 70 行):

        echo <<<END 
<form action = "willingLog.html" method="post"><pre>
    First       <input type="text" name="first" />
    Last        <input type="text" name="last" />
    Email       <input type="text" name="email" />
    Username    <input type="text" name="user_name" />
                <input type="submit" value="AD RECORD" />
</pre></form>
END;

heredoc 似乎不起作用。我试过其他例子。

以下是按文档类型标题。有什么问题吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
4

2 回答 2

24

查看复制粘贴,第一行的“END”一词之后似乎有一个空格字符:

'echo <<<END '

尝试摆脱空格字符。谷歌搜索找到的答案。来源(链接现已失效):http ://www.alexxoid.com/blog/dev/php-dev/php-parse-error-unexpected-t_sl.html

于 2012-06-26T13:56:26.693 回答
0

尝试:

echo <<<'END'
<form action = "willingLog.html" method="post"><pre>
    First       <input type="text" name="first" />
    Last        <input type="text" name="last" />
    Email       <input type="text" name="email" />
    Username    <input type="text" name="user_name" />
                <input type="submit" value="AD RECORD" />
</pre></form>
END;
于 2012-06-26T13:49:24.200 回答