首页 > 后端开发 > php教程 > Parse error: syntax error, unexpected T_CLASS,该怎么处理

Parse error: syntax error, unexpected T_CLASS,该怎么处理

WBOY
发布: 2016-06-13 12:04:47
原创
7627 人浏览过

Parse error: syntax error, unexpected T_CLASS
最近学php,提示第三行有错误,帮忙看下是哪里错了?谢谢
“Parse error: syntax error, unexpected T_CLASS ” in test.php on line 3

<?php<br />require_once("razorflow_php\lib\core\StandaloneDashboard.php")<br />class SampleDashboard extends StandaloneDashboard {<br />    public function buildDashboard () {<br />        $table = new TableComponent('table1');<br />        $table->setCaption("Regional Sales");<br />        $table->setDimensions (4, 4);<br />        $table->setRowsPerPage (8);<br />        $table->addColumn('zone', "Zone");<br />        $table->addColumn('name', "Store Name");<br />        $table->addColumn('sale', "Sales Amount", array(<br />          "dataType" => "number",<br />          "numberPrefix" => "$ ",<br />          "textAlign" => "center"<br />        ));<br /><br />        $data = array(<br />          array("zone" => "North", "name" => "Northern Stores", "sale" => 4000),<br />          array("zone" => "South", "name" => "Southern Stores", "sale" => 4500)<br />        );<br /><br />        $table->addMultipleRows($data);<br /><br />        $this->addComponent ($table);<br />    }<br />}<br /><br />$db = new SampleDashboard();<br />$db->renderStandalone();
登录后复制

------解决方案--------------------
第二行 require_once("razorflow_php\lib\core\StandaloneDashboard.php") 后面少了行结束符 ;(分号)

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板