Я хочу конвертировать docx в pdf с codeingiter. Мое первое решение - установить офис Libre, но теперь я не могу установить его на моем сервере ... (потому что мой начальник не хочет ...)
Первое решение:
$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"');
Есть идеи? Спасибо