How to convert characters to ascii code in php
In PHP, you can use the ord() function to convert characters into ASCII codes. This function can return the ASCII value of a single character or the first character in a string. The returned ASCII value will be in the form of an integer. Display; conversion syntax "ord(string)", parameter "string" cannot be omitted, it is the string (or single character) from which the ASCII value is to be obtained.
The operating environment of this tutorial: windows7 system, PHP8 version, DELL G3 computer
In php, you can use ord() Function to convert characters into ascii code.
The ord() function can return the ASCII value of a single character or the first character in a string.
Syntax:
ord(string)
Parameters:
string Required. The string from which to obtain the ASCII value.
Return value:
Returns the ASCII value in integer form.
example of the ord() function converting characters to ascii code
<?php echo ord("a")."<br>"; echo ord("b")."<br>"; echo ord("c")."<br>"; echo ord("d")."<br>"; echo ord("e")."<br>"; echo ord("f")."<br>"; echo ord("g")."<br><br>"; echo ord("A")."<br>"; echo ord("B")."<br>"; echo ord("C")."<br>"; echo ord("D")."<br>"; echo ord("E")."<br>"; echo ord("F")."<br>"; echo ord("G")."<br>"; ?>
65~ 90 is 26 uppercase English letters, and numbers 97 to 122 are 26 lowercase English letters
Extended knowledge:
ASCII ((American Standard Code for Information Interchange): American Standard Code for Information Interchange) is a computer coding system based on the Latin alphabet, primarily used to display modern English and other Western European languages. It is the most common information exchange standard and is equivalent to the international standard ISO/IEC 646.
ASCII code uses a specified 7-bit or 8-bit binary number combination to represent 128 or 256 possible characters. Standard ASCII code, also called basic ASCII code, uses 7 binary digits (the remaining 1 binary digit is 0) to represent all uppercase and lowercase letters, numbers 0 to 9, punctuation marks, and special controls used in American English. character. Among them:
0~31 and 127 (33 in total) are control characters or special communication characters (the rest are displayable characters), such as control characters: LF (line feed), CR ( Enter), FF (page feed), DEL (delete), BS (backspace), BEL (ring), etc.; communication special characters: SOH (head of text), EOT (end of text), ACK (confirmation), etc.; ASCII values 8, 9, 10, and 13 are converted to backspace, tab, line feed, and carriage return characters respectively. They do not have a specific graphic display, but will have different effects on text display depending on the application.
32~126 (95 in total) are characters (32 is a space), of which 48~57 are ten Arabic numerals from 0 to 9.
65~90 are 26 uppercase English letters, 97~122 are 26 lowercase English letters, and the rest are some punctuation marks, arithmetic symbols, etc.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert characters to ascii code in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
