gpt4 book ai didi

php - 从 joomla 调用 phpexcel

转载 作者:可可西里 更新时间:2023-11-01 01:09:04 25 4
gpt4 key购买 nike

我对 phpexcel 和 joomla 有疑问。我正在开发一些过滤器表单来加载 excel 报告,所以我使用 phpexcel 库来执行此操作。现在我只有一份报告,它工作正常,但之后我使用 PHP pages component 在 joomla 中上传这允许我将 php 文件放入 joomla 并调用它。

当我放置它们时,我稍微更改了调用生成 excel 报告的 php 的表单,我使用这样的链接调用 php:

h**p://www.whiblix.com/index.php?option=com_php&Itemid=24

也就是说,从 Joomla 调用它,而不是直接从 php.ini 调用它。如果我想直接调用 php,我可以使用这个路径:

h**p://www.whiblix.com/components/com_php/files/repImportaciones.php

有什么问题?问题是,当我调用通过 joomla 生成 excel 的 php 时,下载的 excel 已损坏,当我打开它时只在一个单元格中显示符号。但是,如果我直接调用 php,则生成的报告很好。我可以直接调用 php,问题是如果我直接调用它,我不能使用这行代码:

defined( '_JEXEC' ) or die( 'Restricted access' );

用于拒绝直接调用 php 的直接访问,因为它不工作,因为安全。

问题出在哪里?这是生成报告的 php 代码(省略了生成行和单元格的代码):

    <?php
//defined( '_JEXEC' ) or die( 'Restricted access' );
/** Error reporting */
error_reporting(E_ALL);
date_default_timezone_set('Europe/London');
require_once 'Classes/PHPExcel.php';
// Create new PHPExcel object
$objPHPExcel = new PHPExcel();
// Set properties
$objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
->setLastModifiedBy("Maarten Balliauw")
->setTitle("Office 2007 XLSX Test Document")
->setSubject("Office 2007 XLSX Test Document")
->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
->setKeywords("office 2007 openxml php")
->setCategory("Test result file");
// Rename sheet
$objPHPExcel->getActiveSheet()->setTitle('Reporte de Importaciones');
// Set active sheet index to the first sheet, so Excel opens this as the first sheet
$objPHPExcel->setActiveSheetIndex(0);
// Redirect output to a client’s web browser (Excel5)
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="repPrueba.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('php://output');
exit;

最佳答案

PHPExcel-Joomla-Library

我已经为 Joomla 构建了一个库,这将使安装、使用和更新它的整个过程更加容易。你可以在github上查看.它适用于 Joomla! 2.5和3

欢迎反馈。

关于php - 从 joomla 调用 phpexcel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5225944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com