-3
我的PHP有什麼問題,爲什麼heredoc無法正常工作。我收到一條錯誤消息。PHP-Heredoc:不工作?
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<?php
$text = <<< EOT
Line 1\n
Line2\n
Line3.
EOT;
echo $text;
?>
</body>
</html>