我正在使用手动安装的PHPPowerpoint(没有作曲家)。 lib可以工作,但使用模板时不能。
我尝试了以下代码:
$pptReader = PHPPowerPoint_IOFactory::createReader('PowerPoint2007');
$objPHPPowerPoint = $pptReader->load('temp.pptx');
但浏览器显示:
Warning: require_once(PHPPowerPoint/Reader/PowerPoint2007.php): failed to open stream: No such file or directory in C:\xampp\htdocs\PHPPowerPoint-master\Classes\PHPPowerPoint\IOFactory.php on line 161
Fatal error: require_once(): Failed opening required 'PHPPowerPoint/Reader/PowerPoint2007.php' (include_path='C:\xampp\php\PEAR;../Classes/') in C:\xampp\htdocs\PHPPowerPoint-master\Classes\PHPPowerPoint\IOFactory.php on line 161
我也尝试过:
$objPHPPowerPoint = PHPPowerPoint_IOFactory::load("temp.pptx");
这两个都是必需文件,并且在不使用模板时都可以正常工作:
require_once '../Classes/PHPPowerPoint/Autoloader.php';
PHPPowerPoint_Autoloader::register();
include '../Classes/PHPPowerPoint.php';
但是当我尝试加载模板时它不起作用。
我需要为PHPPowerpoint使用模板(pptx文件)。 请帮忙。谢谢。