atgp / factur-x

PHP library to manage your Factur-X / ZUGFeRD 2.0 PDF invoices files
MIT License
94 stars 22 forks source link

Deprecated warning #20

Closed wq9578 closed 1 year ago

wq9578 commented 1 year ago

Deprecated warning (using PHP 8.2.0):

PHP Deprecated:  Function utf8_encode() is deprecated in .../vendor/atgp/factur-x/src/Fpdi/FdpiFacturx.php on line 65
PHP Deprecated:  Function utf8_encode() is deprecated in .../vendor/atgp/factur-x/src/Fpdi/FdpiFacturx.php on line 133
lucas-gp commented 1 year ago

Hello, Don't hesitate to make pull request to fix it :slightly_smiling_face:

wq9578 commented 1 year ago

Solution: Use the “mb_convert_encoding” function.

<?php

$utf8 = mb_convert_encoding("\xa5\xa7\xb5", 'UTF-8', 'ISO-8859-2'); // ISO-8859-2 -> UTF-8
$iso88592 = mb_convert_encoding($utf8, 'ISO-8859-2', 'UTF-8');      // UTF-8 -> ISO-8859-2

https://www.followchain.org/utf8-encode-decode-deprecated-php/

See also: https://lindevs.com/functions-utf8_encode-and-utf8_decode-are-deprecated-in-php-8-2

crozet-magenta commented 1 year ago

Hi @wq9578 It should be fixed with the new version, I don't have the warning anymore on my app Thank you @lucas-gp for the merge