1

我在以下代码中遇到解析错误:

<?php
// This:
$a = array( 'color' => 'red',
            'taste' => 'sweet',
            'shape' => 'round',
            'name'  => 'apple',
            4        // key will be 0
          );

$b = array('a', 'b', 'c');

// . . .is completely equivalent with this:
$a = array();
$a['color'] = 'red';
$a['taste'] = 'sweet';
$a['shape'] = 'round';
$a['name']  = 'apple';
$a[]        = 4;        // key will be 0

$b = array();
$b[] = 'a';
$b[] = 'b';
$b[] = 'c';

// After the above code is executed, $a will be the array
// array('color' => 'red', 'taste' => 'sweet', 'shape' => 'round', 
// 'name' => 'apple', 0 => 4), and $b will be the array 
// array(0 => 'a', 1 => 'b', 2 => 'c'), or simply array('a', 'b', 'c')

var_dump($a);
echo <br>
var_dump($b);
echo <br>
?> 

PHP 解析错误:语法错误,第 31 行 /home/ashish/NetBeansProjects/PhpProject1/index.php 中的意外“<”

上面的代码有什么问题?


好的,正确的休息方式是这样的。

echo "<br>";
4

2 回答 2

4

您不能直接在 PHP 标记内输出 HTML。改用echo

echo "<br>";
于 2012-11-13T12:31:36.200 回答
0

您不能随意混合 HTML 和 PHP(除非您不使用XHP),您必须关闭 php 或使用 echo

var_dump($a);?>
<br>
<?php var_dump($b);?>
<br>
于 2012-11-13T12:32:10.083 回答