Describe the bug
Since I updated my project to PHP 8.3 I get the following error:
mb_convert_encoding(): Handling HTML entities via mbstring is deprecated;
To Reproduce
- Generate a PDF with PHP 8.3
- Look at the logs to find the deprecation warning.
Expected behavior
No warnings should be generated.
Additional context
The problem is the function here:
|
$html = mb_convert_encoding($view, 'HTML-ENTITIES', 'UTF-8'); |