我需要一些关于this code from PHP Classes的帮助,这应该可以将MySQL导出到Excel。
我得到以下错误:Parse error: syntax error, unexpected T_SL in excelwriter.inc.php on line 100
这是第100行:
[Line100] function GetHeader()
{
$header = <<<EOH
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
帮忙?谢谢您!
最佳答案
Heredoc语法不允许在开始(<<<EOH
)或结束(EOH;
)标记后的同一行上有任何尾随空白。
此错误是由后面的空白引起的:
$header = <<<EOH <---- whitespace! remove it.
把它拿走,你应该没事的。一定要检查结束标签以及。