I have many warnings like
Implicit conversion from float 3.015625 to int loses precision in vendor/neitanod/forceutf8/src/ForceUTF8/Encoding.php on line 206
using PHP8.1.5
One solution is REPLACE:
By
chr(intval(ord($c1) / 64))
In php8 chr function recives a integer and dont provide impicit convertion from float to integer
I have many warnings like
Implicit conversion from float 3.015625 to int loses precision in vendor/neitanod/forceutf8/src/ForceUTF8/Encoding.php on line 206
using PHP8.1.5
One solution is REPLACE:
By
In php8 chr function recives a integer and dont provide impicit convertion from float to integer