How to make mPDF 6.1 work with PHP 7.1.5

前端 未结 1 1444
长情又很酷
长情又很酷 2020-12-07 05:33

Developed on on a WAMP stack with PHP 5.6, then transferred to LAMP 7.1.5 Everything is working OK except for mPDF 6.1.0 which is giving the following:

Warni         


        
相关标签:
1条回答
  • 2020-12-07 06:07

    Edit mpdf.php, line 89, replace:

    $errorlevel = error_reporting($errorlevel & ~E_NOTICE);
    

    with:

    $errorlevel = error_reporting($errorlevel & ~(E_NOTICE|E_WARNING));
    

    Reason: https://stackoverflow.com/a/42044413/8284401

    0 讨论(0)
提交回复
热议问题