我在看一些文件。所以我用博士学位。
这是我图书馆里的东西。

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

require_once  APPPATH . '/third_party/PhpWord/Autoloader.php';
use PhpWord\Autoloader as Autoloader;
Autoloader::register();

class Word extends Autoloader {

}

当我要用它的时候。我有这个错误:
Fatal error: Class 'PhpOffice\PhpWord\Autoloader' not found in D:\xampp\htdocs\jdih\application\libraries\Word.php on line 6
A PHP Error was encountered

Severity: Error

Message: Class 'PhpOffice\PhpWord\Autoloader' not found

Filename: libraries/Word.php

Line Number: 6

Backtrace:

我试过这个但没用。
这是我第三方的文件夹。我怎样才能解决这个问题?
CodeIgniter PHPWord using as third_party

最佳答案

从这里下载
像这样加载库。

include_once(APPPATH."third_party/PhpWord/Autoloader.php");
//use PhpOffice\PhpWord\Autoloader;
//use PhpOffice\PhpWord\Settings;
Autoloader::register();
Settings::loadConfig();

07-25 21:37