我正在使用PHPExcel为我的PHP应用程序生成一个列表。
//Nothing significant before if
if($type == "StudentList")
{
PHPExcel $ex = new PHPExcel();
$ex->getProperties()->setTitle("Student List.xlsx");
//rest of the code follows
在PHPExcel $ex = new PHPExcel();
行我收到错误unexpected T_VARIABLE
。我已经包含了PHPExcel.php文件的路径,并包含了该文件。我似乎不明白错误可能是什么?非常感谢任何帮助,提前谢谢。
答案 0 :(得分:0)
试试这个。它的工作原理
if($type == "StudentList") {
//PHPExcel
$ex = new PHPExcel();
$ex->getProperties()->setTitle("Student List.xlsx");
}