看看下面的代码
<?php
//The array is storing a blog entry in it
$entry = array ('title' => 'sample title',
'date' => 'August 9, 2011',
'author' => 'daNullSet',
'body' => 'I shall become a web developer IA',);
echo "The title of the blog is ".$entry['title']."<br />";
?>
上面的代码执行得很好,但是当我将 $entry['title'] 用双引号括起来并在 echo 语句中与其他字符串连接时,它会返回以下解析错误。
解析错误:语法错误,意外的 '' (T_ENCAPSED_AND_WHITESPACE),在第 7 行的 C:\xampp\htdocs\php-ex\test.php 中需要标识符 (T_STRING) 或变量 (T_VARIABLE) 或数字 (T_NUM_STRING)
你能指导一下错误的原因吗?我对编程完全陌生。谢谢