gpt4 book ai didi

Laravel EXCEL 和 PDF 导出

转载 作者:行者123 更新时间:2023-12-01 07:54:25 25 4
gpt4 key购买 nike

我是 Laravel 的新手,我使用的是 Laravel 4.2

我喜欢以 PDF 和 excel 格式导出一些数据。

Laravel 有什么办法吗?

最佳答案

使用 FPDF做你需要做的事。您必须从头开始创建一个 pdf 文件并以您想要的方式填写它。

<?php
require('fpdf.php');

$pdf = new FPDF();
$pdf->AddPage(); // add page to PDF
$pdf->SetFont('Arial','B',16); // Choose a font and size
$pdf->Cell(40,10,'Hello World!'); // write anything to any line you want
$pdf->Output("your_name.pdf"); // Export the file and send in to browser
?>

对于 Excel,一个简单的方法是添加 PHPExcel到拉拉维尔。将此行添加到您的 composer.json :
"require": {
"phpexcel/phpexcel": "dev-master"
}

然后运行 ​​ composer update .所以像这样使用它:
$ea = new PHPExcel();

$ea->getProperties()
->setCreator('somebody')
->setTitle('PHPExcel Demo')
->setLastModifiedBy('soembody')
->setDescription('A demo to show how to use PHPExcel to manipulate an Excel file')
->setSubject('PHP Excel manipulation')
->setKeywords('excel php office phpexcel')
->setCategory('programming')
;

$ews = $ea->getSheet(0);
$ews->setTitle('Data');

$ews->setCellValue('a1', 'ID'); // Sets cell 'a1' to value 'ID
$ews->setCellValue('b1', 'Season');

关于Laravel EXCEL 和 PDF 导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32651909/

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