For example 52e666 will be considered as a valid numeric value by PHP, and the INI component will cast it to a number (with transforms the string).
I guess the solution to use would be to cast to numbers only strings that contain numbers only. That way casting back to string will give the same result.
For example
52e666
will be considered as a valid numeric value by PHP, and the INI component will cast it to a number (with transforms the string).I guess the solution to use would be to cast to numbers only strings that contain numbers only. That way casting back to string will give the same result.