Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrade to PHP7.1 and MPDF show error - A non-numeric value encountered at line 30648

Tags:

mpdf

I'm using PHP 5.x and mPDF 6.x for long time.

This week I decide to upgrade system to PHP7.1 but still using mPDF6.

I face some problem after upgrading.

PROBLEM 1::

Console show error message: constructer with the same name as class name is deprecate.

I go through each php files and find classes, then replace constructer function with __construct(...)

PROBLEM 2::

Console show error message:: Can not assign property ID to $attr I go to file mPDF.php in function MergeCSS(...). I add new line of code at third line.

if (empty($attr)) { $attr = array();}

PROBLEM 3::

Console show error message following this:: "A non-numeric value encountered" at line 30648."

My solution to solve this problem is just::

  1. replace mPDF->ConvertSize() function in mPDF.php file with coding from MPDF7.

    By replace function ConvertSize() with function ConvertSize() and multiplyFontSize();

https://github.com/mpdf/mpdf/blob/development/src/SizeConverter.php

  1. Add constant to mPDF class

const SCALE = 72 / 25.4;

Hope this help for someone who face this problem.

like image 626
Chanatip Yim Avatar asked May 16 '17 06:05

Chanatip Yim


2 Answers

For people who want a complete "A non-numeric value encountered" fix. Take a look at my forked repo of mpdf 6.1.3 with commit.

like image 139
Bas Elbers Avatar answered Oct 07 '22 00:10

Bas Elbers


FYI: PHP7 throws a compile-time error when it encounters a switch statement with multiple default blocks. mpdf uses multiple default blocks in its switch statements.

like image 44
Paul Allsopp Avatar answered Oct 07 '22 01:10

Paul Allsopp