小编dat*_*nfo的帖子

使用 DOMPDF 将 PHP 转为 PDF

我正在用 PHP 生成一个列表(某种学生预约卡)。我希望能够将其另存为 PDF。我已经成功地尝试了 PHP 和 DOMPDF 的一些基本布局。

当我尝试将以下内容另存为 PDF 时,它不起作用。

<?php
session_start();

// User session check
    if(!$_SESSION['email'])
        {
        header("Location: login.php");//redirect to login page to secure the welcome page without login access.
        }

    include("php/getCustomerEvents.php");

// get row id = student id
    $id = $_GET[id];


// check user language
    $lang = $_SESSION['lang'];

    switch ($lang) 
    {
      case 'en':
      $lang_file = 'lang.en.php';
      break;

      //case 'fr':
      //$lang_file = 'lang.fr.php';
      //break;

      case 'nl':
      $lang_file = 'lang.nl.php';
      break;

      default:
      $lang_file = 'lang.nl.php';
    }

    include_once 'lang/'.$lang_file;

// …
Run Code Online (Sandbox Code Playgroud)

php pdf dompdf twitter-bootstrap-3

3
推荐指数
1
解决办法
5092
查看次数

标签 统计

dompdf ×1

pdf ×1

php ×1

twitter-bootstrap-3 ×1