kphp icon indicating copy to clipboard operation
kphp copied to clipboard

fixed float casting for hex-string with leading spaces

Open i582 opened this issue 3 years ago • 0 comments

Before:

var_dump((float) "  0x1"); // float(1)

After:

var_dump((float) "  0x1"); // float(0) (as in PHP)

i582 avatar Sep 15 '21 20:09 i582