Skip to content

Commit

Permalink
Page cache PHP 5.3 support in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ssigwart committed Oct 24, 2023
1 parent 38b38a9 commit 677f53f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example_068.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
$pdf->usePageCacheFile($pageCacheSize);

// Write a lot of cells
$cols = ['A', 'B', 'C', 'D', 'E'];
$cols = array('A', 'B', 'C', 'D', 'E');
$colWidth = 160 / count($cols);
$lastColIdx = count($cols) - 1;
for ($i = 0; $i < 5000; $i++)
Expand Down

0 comments on commit 677f53f

Please sign in to comment.