PHP教程

引用的类被废弃undefined method think\Loader::import()(thinkPHP5.0--5.1)

本文主要是介绍引用的类被废弃undefined method think\Loader::import()(thinkPHP5.0--5.1),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

文件上传导入的引用undefined method think\Loader::import()

use

use PhpOffice\PhpSpreadsheet\IOFactory;

原来的引用5.0

Loader::import('.PHPExcel.PHPExcel.IOFactory');
$objReader =  new \PHPExcel_Reader_Excel2007();

修改成

$objReader = IOFactory::createReader('Xlsx');

 

这篇关于引用的类被废弃undefined method think\Loader::import()(thinkPHP5.0--5.1)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!