mPDF Manual – mPDF Variables

simpleTables

(mPDF ≥ 4.3)

simpleTables – Disables complex table borders etc. to improve performance

Description

void simpleTables

Specify whether to disable complex table borders etc. to improve performance. The border for all table cells will be the same (although separate values can be used for -top, -left etc.). A separate table border may still be specified (if border-collapse is not used).

This may improve performance considerably for large tables, reducing memory use and increasing processing speed by approximately 30%

Values

$simpleTablestrue|false

Values

  • true: disable complex table borders etc.
  • false: allow full CSS support for tables

Default: false

Changelog

Version Description
4.3 Variable was added.

Examples

<?php
// Require composer autoload
require_once __DIR__ . '/vendor/autoload.php';
$mpdf = new \Mpdf\Mpdf();

$mpdf->simpleTables = true;

$mpdf->WriteHTML($table);
$mpdf->Output();

Fork me on GitHub