首页 > 代码库 > yii2:引用项目外的文件或类
yii2:引用项目外的文件或类
yii2:引用项目外的文件或类
以项目:frontend为例,文件目录如下:
frontend/
frontend/controllers
frontend/views
frontend/runtime
......
other/
other/phpexcel/
......
在frontend/controllers/IndexController.php方法中:actionIndex中,引用 PHPExcel类:
$excelpath = dirname(Yii::$app->basePath).DIRECTORY_SEPARATOR.‘weixin‘.DIRECTORY_SEPARATOR.‘phpexcel‘.DIRECTORY_SEPARATOR; include_once $excelpath . ‘PHPExcel.php‘; include_once $excelpath . ‘PHPExcel‘.DIRECTORY_SEPARATOR.‘IOFactory.php‘; $excel = new \PHPExcel();
以上是正确引用,如果是require_once dirname(dirname(dirname(__FILE__))).‘/other/phpexcel/PHPExcel.php‘;这样引用,是报错,找不到类:
Class ‘frontaction\controllers\PHPExcel‘ not found
yii2:引用项目外的文件或类
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。