警告:包括(/../Classes/PHPExcel/IOFactory.php):无法打开流
Warning: include(/../Classes/PHPExcel/IOFactory.php): failed to open stream
当我 运行 在我的 local server
上时,我无法包含 phpexcel
它正在工作,但在我在某些托管站点上安装它后,它不再工作了。有人可以帮我解决这个问题吗?
第 3 行
include('/../Classes/PHPExcel/IOFactory.php');
错误
Warning: include(/../Classes/PHPExcel/IOFactory.php): failed to open stream: No such file or directory in /srv/disk11/2468402/www/censored/teacher/data/subject_model.php on line 3
目录
老师
类
- PHPExcel
- IOFactory.php
数据
- subject_model.php
改用__DIR__
。
include(__DIR__ . '/../Classes/PHPExcel/IOFactory.php');
当我 运行 在我的 local server
上时,我无法包含 phpexcel
它正在工作,但在我在某些托管站点上安装它后,它不再工作了。有人可以帮我解决这个问题吗?
第 3 行
include('/../Classes/PHPExcel/IOFactory.php');
错误
Warning: include(/../Classes/PHPExcel/IOFactory.php): failed to open stream: No such file or directory in /srv/disk11/2468402/www/censored/teacher/data/subject_model.php on line 3
目录
老师
类
- PHPExcel
- IOFactory.php
- PHPExcel
数据
- subject_model.php
改用__DIR__
。
include(__DIR__ . '/../Classes/PHPExcel/IOFactory.php');