Query: hexdec
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
HEXDEC(3) 1 HEXDEC(3) hexdec - Hexadecimal to decimalSYNOPSISnumber hexdec (string $hex_string)DESCRIPTIONReturns the decimal equivalent of the hexadecimal number represented by the $hex_string argument. hexdec(3) converts a hexadecimal string to a decimal number. hexdec(3) will ignore any non-hexadecimal characters it encounters.PARAMETERSo $hex_string - The hexadecimal string to convertRETURN VALUESThe decimal representation of $hex_stringEXAMPLESExample #1 hexdec(3) example <?php var_dump(hexdec("See")); var_dump(hexdec("ee")); // both print "int(238)" var_dump(hexdec("that")); // print "int(10)" var_dump(hexdec("a0")); // print "int(160)" ?>NOTESNote The function can convert numbers that are too large to fit into the platforms integer type, larger values are returned as float in that case.SEE ALSOdechex(3), bindec(3), octdec(3), base_convert(3). PHP Documentation Group HEXDEC(3)