Home > Backend Development > PHP Problem > How to convert php int to byte

How to convert php int to byte

藏色散人
Release: 2023-03-14 20:48:01
Original
2222 people have browsed it

How to convert php int to byte: 1. Create a PHP sample file; 2. Pass "$i = 123456;$ar = unpack("C*", pack("L", $i) );" statement can be converted.

How to convert php int to byte

The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer

How to convert php int to byte?

PHP integer type (int) to byte set (byte)

The code is as follows:

$i = 123456;
$ar = unpack("C*", pack("L", $i));
Copy after login

pack() function loads data into a binary string.

The unpack() function unpacks data from a binary string.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to convert php int to byte. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template