Home  >  Article  >  Backend Development  >  How many bytes does one character occupy in php?

How many bytes does one character occupy in php?

王林
王林Original
2020-08-05 13:12:034572browse

The bytes occupied by characters in different encoding formats in php are different. In ANSI encoding format, one Chinese character occupies 2 bytes and one English character occupies 1 byte; in UTF-8 encoding format, one Chinese character occupies 3 bytes and one English character occupies 1 byte.

How many bytes does one character occupy in php?

The bytes occupied by characters in different encoding formats are different:

(Recommended tutorial: php graphic tutorial

ANSI Chinese characters occupy 2 bytes and English characters occupy 1 byte;

UTF-8 Chinese characters occupy 3 bytes and English characters occupy 1 byte;

Unicode Chinese characters occupy 2 bytes and English characters occupy 2 bytes;

Talk about the difference between characters and bytes:

(1) "Bytes" Definition

Byte (Byte) is a unit of measurement that indicates the amount of data. It is a unit of measurement used by computer information technology to measure storage capacity.

(Video tutorial recommendation: php video tutorial)

(2) Definition of "Character"

Characters refer to text and characters used in computers Symbols, such as 1, 2, 3, A, B, C, ~! ·#¥%……—*()——, etc.

Numbers, letters and other symbols are all characters. Characters only occupy one byte, and Chinese characters occupy two (UTF-8).

The above is the detailed content of How many bytes does one character occupy 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