首页 > 解决方案 > Codeigniter 3 将 docx 转换为 pdf php

问题描述

我想用 codeingiter 将 docx 转换为 pdf。我的第一个解决方案是安装 Libre Office,但现在我无法在我的服务器上安装它......(因为我的老板不想要......)

第一个解决方案:

$PHPWord = $this->word; // New Word Document
    $document = $PHPWord->loadTemplate('assets/word/' . $select_info->attestation);
    $document->setValue('ID', $insert);
    $document->setValue('lastname', strtoupper($select_info->nom));
    $document->setValue('name', $select_info->prenom);
    $document->setValue('date', date('d/m/Y'));
    $document->save('./'.$select_info->attestation);

    //Avec libraoffice convertir word to pdf
    shell_exec('start /wait soffice --headless --convert-to pdf --outdir "." "./test.docx"');

任何想法 ?谢谢

标签: phpcodeigniterconverters

解决方案


CI 只是一个轻量级框架,不包含任何你想做的事情。您需要安装一些东西才能使这项工作。你可以在这里试试这个库:https ://github.com/phpgearbox/pdf


推荐阅读