Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert hexadecimal to decimal in php

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how hexadecimal and decimal are converted to each other in php. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Conversion methods: 1, use the "hexdec (hexadecimal string)" statement, you can convert hexadecimal to decimal numbers; 2, use the "dechex (decimal value)" statement, you can convert decimal to hexadecimal values; 3, use the "base_convert (" binary value ", primitive, target)" statement.

Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

Conversion between hexadecimal and decimal

1, hexadecimal number to decimal number

You can use the hexdec (hexadecimal string) function, which converts hexadecimal numbers to decimal numbers.

Output result:

You can also use the base_convert () function by setting "bindec (hexadecimal string, 16,10)".

Output result:

3010460713430527

2, decimal number to hexadecimal value

You can use the dechex (decimal value) function, which converts decimal numbers to hexadecimal numbers.

Output result:

You can also use the base_convert () function, just set "bindec (decimal value, 10,16)".

Output result:

1ea63346

Thank you for reading! This is the end of the article on "how to convert hexadecimal to decimal in php". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report