PHP ヒアドキュメント内で JavaScript を終了できないのはなぜですか?
この行の下の残りのコード:
</script>
PHP のコードの一部ではなくなります。それらは HTML コードになります。
これは、終了スクリプト コードが PHP ブロックを終了するようなものです。
$headerContent = <<<HEAD
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<title>$title</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2" />
<script>
</script> // Here is the problem
</head> // code here and below becomes not part of PHP.
<body>
.
.
.
HEAD;
この問題を解決するためのヒントはありますか?