还有一个“解析错误:语法错误,意外'回声'(T_ECHO)”

时间:2015-12-03 18:25:26

标签: php parsing syntax

为什么说“解析错误:语法错误,意外'打印'(T_PRINT)......”?

<?php 

//init
$pi = 3.14;
$radius = 15;
$theArea = 0;

//area = 2 pi R
$theArea = $pi * ($radius * $radius)

//output
print ("The area of a circle of radius ".$radius." is " . $theArea);

?>

1 个答案:

答案 0 :(得分:0)

您忘记在print

之前为语句添加分号
//area = 2 pi R
$theArea = $pi * ($radius * $radius); //here

此外,您可以使用print而不使用括号,因为它是一种语言结构。

print "The area of a circle of radius " . $radius . " is " . $theArea;

除非你真的想要