0

我已经尝试过他们过去包含在 Zend Framework 2 中的方式,但它给了我一个错误

致命错误:在第 13 行的 /var/www/html/skeleton/module/Album/src/Controller/AlbumController.php 中找不到类 'Lib\FusionCharts'

4

1 回答 1

0

使用前必须包含库的路径:

/** Include path **/
ini_set('include_path', ini_get('include_path').';<relative directory path from this file>/');

/** PHPExcel */
include 'fusioncharts.php';

$objFusionCharts = new FusionCharts();

或者,如果你使用 composer,你可以在Lib你的composer.json.

"autoload": {
    "psr-4": {
        "Lib\\": "relative/directory/path/from/your/baseDir"
    }
},

然后运行:

composer dump-autoload
于 2016-11-23T14:04:53.407 回答