PHP语法错误,大神们都进来看看我哪里错了!
我的代码:
PHP code<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->
放到服务器上提示:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\xampp\htdocs\index.php on line 16
上面第一行代码就是第16行
------解决方案--------------------echo"
当前时间是:$currtimestr
"
php?>
1. echo 最好和 ""分开
echo "内容";
2. 内容要被引号包裹,而你要输出的HTML代码中有双引号,PHP解释器是依靠引号来判断字符串在哪里结束的,因此
3. PHP代码段的结束标志是 ?> 不是 php?> 只有开始是 正确的代码:
$currtime=time();
$currtimestr=strftime("%H:%M:%S",$currtime);
echo '
当前时间是:'.
$currtimestr.
'
"
';
?>
------解决方案--------------------