Advertisement
xThomas

PHPWord Manual Install - bootstrap.php

Dec 20th, 2024
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | Source Code | 0 0
  1. <?php
  2. $phpWordPath = realpath(__DIR__ . '/lib/PhpOffice/PhpWord');
  3.  
  4. if (file_exists($phpWordPath . '/Autoloader.php')) {
  5.     require_once $phpWordPath . '/Autoloader.php';
  6.  
  7.     \PhpOffice\PhpWord\Autoloader::register();
  8. } else {
  9.     throw new Exception(
  10.         sprintf(
  11.             "Could not find the PHPWord autoloader at '%s'. Please check your file paths.",
  12.             $phpWordPath . '/Autoloader.php'
  13.         )
  14.     );
  15. }
  16. ?>
Tags: php phpWord
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement