kphp
kphp copied to clipboard
fixed float casting for hex-string with leading spaces
Before:
var_dump((float) " 0x1"); // float(1)
After:
var_dump((float) " 0x1"); // float(0) (as in PHP)