search

Base conversion in PHP

Jul 03, 2019 pm 03:54 PM
phpBase conversion

Base conversion in PHP

Binary system

Four kinds

  1. Binary system: 0,1, full 2 ​​enters 1.

In golang, binary cannot be used directly to represent an integer, it follows the characteristics of c.

  1. Decimal: 0-9, 10 to 10.
  2. Octal: 0-7, full 8-digit 1. It starts with the number 0.
  3. Hexadecimal: 0-9 and A-F, full 16 in 1. It starts with 0x or 0X. A-F here are not case sensitive.
package main
import "fmt"
func main() {
    var i int = 5
    //二进制
    fmt.Printf("%b \n",i)

    var j int = 011 // 011=>8+1 = 9
    //八进制
    fmt.Println("j=",j)

    var k int = 0x11 //0x11 => 16+1 =17
    //十六进制 0x或者0X开头
    fmt.Println("k=",k)
}
//101
//j= 9
//k= 17

Base Illustration

Base conversion in PHP

Base conversion in PHP

##1. Convert other bases to decimal

    Binary to decimal
  1. Octal to decimal
  2. Hexadecimal to decimal
Binary to decimal

Rule: from lowest Starting with the digit (on the right), extract the number on each digit, multiply it by 2 raised to the (digit order - 1) power and then sum it up

Case: 1011= $1
2^3 0 2^2 12^1 12^0$=8 2 1 = 11

Octal to decimal

Rule: Starting from the lowest digit (the one on the right), Extract the number in each digit, multiply it by 8 raised to the power of (digit order -1) and sum it up

Case: 0123 = $1
8^2 28^1 3*8^ 0$=64 16 3 = 83

Hexadecimal to decimal

Rule: Starting from the lowest digit (the one on the right), extract the number in each digit and multiply by 16 of (place-1) power and then sum up

Case: 0x34A = $10
16^0 416^1 3*16^2$= 10 64 768 = 842

2. Convert decimal to other bases

    Convert decimal to binary
  1. Convert decimal to octal
  2. Convert decimal to hexadecimal
Decimal to binary

Rules: Keep dividing the number by 2 until the quotient is 0, and then reverse the remainder obtained at each step, which is the corresponding binary

case: 56= 111000

Convert decimal to octal

Rule: Keep dividing the number by 8 until the quotient is 0, and then reverse the remainder obtained at each step, which is the corresponding octal number

Case: 156=0234

Convert decimal to hexadecimal

Rule: Keep dividing the number by 16 until the quotient is 0, then reverse the remainder obtained at each step to get the corresponding hexadecimal System

Case: 356= 0x164

3. Binary to other system

    Binary to octal
  1. Binary to hexadecimal
Convert binary to octal

Rule: Convert each binary number into a group of three digits (combining from the low bit--

right!), and convert it to the corresponding octal numberCase: 11010101 = 11/010/101 = 324 = 0324

Binary to hexadecimal

Rule: Binary numbers are grouped into groups of four digits (starting from the low bit -

Right!), convert it to the corresponding hexadecimal numberCase: 11010101= 1101/0101 = 13/5 = D5 = 0xD5

4. Octal, ten Convert hexadecimal to binary

    Convert octal to binary
  1. Convert hexadecimal to binary
Convert octal to binary

Rule: Convert hexadecimal to binary Each digit of the octal number (combined starting from the low bit -

on the right ! ), convert it into a corresponding 3-digit binary numberCase: 0237= 10/011/111 = 10011111

Hexadecimal to binary

Rule: Convert ten Each digit of the hexadecimal number (combined starting from the low bit--

right side!) can be converted into a corresponding 4-digit binary numberCase: 0x237= 10/0011/0111 = 1000110111

It’s a bit confusing, let’s summarize it again


hexadecimal summary

1: Type: 2 , 8, 10, 16

2: Specific composition

  1. 2:0, 1
  2. 8:0-7
  3. 10:0-9
  4. ##16:0-9、A、B、C、 D, E, F
3: Convert other bases to decimal

times the power of the base to be converted (bit-1) Then sum

4: convert decimal to other bases

The converted number is divided by the number to be converted until the quotient is 0, and then each Reverse the remainder obtained in this step

5: Convert binary to other bases

Convert to octal, starting from the right, divide every three digits

Convert to hexadecimal, start from the right, divide every four digits into 6:

Convert octal and hexadecimal to binary

Convert octal, start from the right, Every three digits are divided into Hexadecimal conversion, starting from the right, every four digits are divided into

For more PHP related technical articles, please visit the

PHP Tutorial

column to learn !

The above is the detailed content of Base conversion in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP's Purpose: Building Dynamic WebsitesPHP's Purpose: Building Dynamic WebsitesApr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP: Handling Databases and Server-Side LogicPHP: Handling Databases and Server-Side LogicApr 15, 2025 am 12:15 AM

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO)How do you prevent SQL Injection in PHP? (Prepared statements, PDO)Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

PHP and Python: Code Examples and ComparisonPHP and Python: Code Examples and ComparisonApr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP in Action: Real-World Examples and ApplicationsPHP in Action: Real-World Examples and ApplicationsApr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: Creating Interactive Web Content with EasePHP: Creating Interactive Web Content with EaseApr 14, 2025 am 12:15 AM

PHP makes it easy to create interactive web content. 1) Dynamically generate content by embedding HTML and display it in real time based on user input or database data. 2) Process form submission and generate dynamic output to ensure that htmlspecialchars is used to prevent XSS. 3) Use MySQL to create a user registration system, and use password_hash and preprocessing statements to enhance security. Mastering these techniques will improve the efficiency of web development.

PHP and Python: Comparing Two Popular Programming LanguagesPHP and Python: Comparing Two Popular Programming LanguagesApr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

The Enduring Relevance of PHP: Is It Still Alive?The Enduring Relevance of PHP: Is It Still Alive?Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version