当 运行 示例时,在 phpExcel class 中没有这样的文件或目录错误

getting no such file or directory error in phpExcel class when running example

我最近刚下载了phpExcel库包,我按照安装文件来的
我检查了 运行 phpExcel 类.

的所有要求

为了检查库是否正常工作,我从 phpExcel 目录的 Example 文件夹中 运行 01simplephar.php

但是我得到这个错误:

require_once(../Build/PHPExcel.phar): failed to open stream: No such file or directory in C:\Xampp\htdocs\Excel\ExamplespharSimple.php on line 42

我已经检查过扩展是否有效。
好像是运行ning但是还是没有执行。

我遇到了同样的问题。 进入 php 文件:01simplephar.php

换行:

require_once '../Build/PHPExcel.phar';

至:

require_once '../Classes/PHPExcel.php';

这应该可以解决您的问题。你处理的是 zip 文件而不是 repo...所以你不会有构建文件夹。