nmalo/dompdf-bundle
最新稳定版本:1.0.1
Composer 安装命令:
composer require nmalo/dompdf-bundle
包简介
A wrapper for using DomPDF inside Symfony 2 (fork from SlikNL/DompdfBundle)
README 文档
README
This bundle provides a wrapper for using DomPDF inside Symfony2.
Installation
When using composer add the following to your composer.json
// composer.json { //... "require": { //... "slik/dompdf-bundle" : "dev-master" } //... }
and run php composer.phar update slik/dompdf-bundle.
Next add the following to your appkernel:
// in AppKernel::registerBundles() $bundles = array( // Dependencies new Slik\DompdfBundle\SlikDompdfBundle(); );
Custom configuration
Copy the dompdf_config..inc.php.dist files to dompdf_config..inc.php to your /app directory and follow the dompdf usage docs.
Usage
Whenever you need to turn something into a pdf just use this anywhere in your controller:
// Set some html and get the service $html = '<h1>Sample html</h1>'; $dompdf = $this->get('slik_dompdf'); // Generate the pdf $dompdf->getpdf($html); // Either stream the pdf to the browser $dompdf->stream("myfile.pdf"); // Or get the output to handle it yourself $pdfoutput = $dompdf->output();
统计信息
- 总下载量: 6.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: All
- 更新时间: 2015-08-27