string dechex ( int num ) converts a decimal number into a binary number : dechex « Math « PHP






string dechex ( int num ) converts a decimal number into a binary number

 
print dechex(232); // "e8"
  
  

Related examples in the same category