<?php
header("Content-Type:text/html;charset=utf-8");
$mylanguage="php";
$showstr = <<<msg
我最喜愛的網頁程式語言是:$mylanguage <br />
許多學生都說:"it`s easy,it`s good."msg;
echo $showstr;
?>
我照著書上的範例打的理論上應該是會出現我最喜愛的網頁程式語言是:php跟
許多學生都說:it`s easy,it`s good.
可是卻出現Parse error: syntax error, unexpected end of file in
C:\xampp\htdocs\learning.php on line 11
我把html的標籤等都砍掉,結果果然是程式把$showstr後面都看成字串了,請問一下
我的heredoc到底那裏出問題?