How php converts data to hexadecimal
This article mainly shows you "how php converts data into hexadecimal". The content is easy to understand and clear. I hope it can help you solve your doubts. Let me lead you to study and learn this article "how php converts data to hexadecimal".
Conversion methods: 1, with dechex (), you can convert the decimal to hexadecimal, syntax "dechex (decimal value)"; 2, with base_convert (), syntax "bindec (decimal value, 10Power16)"; 3, with bin2hex (), syntax "bin2hex (string)".
Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
Php converts data to hexadecimal
1. Use the dechex () function to convert decimal to hexadecimal
Dechex (decimal value) converts decimal numbers to hexadecimal numbers.
Output result:
1ea63346
2. Use the base_convert () function to convert decimal to hexadecimal
The base_convert () function converts numbers between arbitrary digits.
Set bindec (decimal value, 10,16) to convert decimal to hexadecimal.
Output result:
3. Use the bin2hex () function to convert the string to hexadecimal
The bin2hex (string) function converts a string of ASCII characters to a hexadecimal value.
These are all the contents of the article "how php converts data to hexadecimal". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!