Home Daily Programming PHP Knowledge What is PHP array serialization and deserialization? (Pictures + Videos)

What is PHP array serialization and deserialization? (Pictures + Videos)

Sep 30, 2018 am 09:23 AM

This article mainly introduces you to PHP array serialization and deserialization related knowledge.

PHP serialization is a very common operation during the operation of our actual project. For example, when we want to store an array value in the database, we can serialize the array and then store the serialized value in the database. In fact, PHP serialized arrays convert complex array data types into strings, which facilitates array storage operations.

We serialize and deserialize PHP arrays, mainly using two functions, serialize and unserialize.

1. PHP array serialization: serialize

<?php
$data=[&#39;PHP&#39;,&#39;HTML&#39;,&#39;Java&#39;,&#39;Python&#39;];
echo serialize($data);
Copy after login

Here we create a simple array variable $data, and then we serialize the array through the serialize function operate.

The echo results are as follows:

a:4:{i:0;s:3:"PHP";i:1;s:4:"HTML";i:2;s:4:"Java";i:3;s:6:"Python";}
Copy after login

We will explain this serialized data to facilitate the understanding and learning of novice friends.

a: Represents the overall data type, here is array;

a: 4 in 4: Represents the number of array elements;

i: Represents int, integer type;

0: represents the subscript of the array element;

s: represents string, that is, the type of the array value;

s: 3 in 3: represents the array value length.

Note: serialize() returns a string. This string contains a byte stream representing value and can be stored anywhere. This facilitates storing or passing PHP values ​​without losing their type and structure.

2. PHP deserialization: unserialize

<?php
$data=[&#39;PHP&#39;,&#39;HTML&#39;,&#39;Java&#39;,&#39;Python&#39;];
$str=serialize($data);
var_dump(unserialize($str));
Copy after login

If we want to convert the serialized data into an array, we need to use the unserialize function .

Like the appeal code, the result after we deserialize the $str variable is as follows:

What is PHP array serialization and deserialization? (Pictures + Videos)

Note: unserialize() operates on a single serialized variable and converts it back to a PHP value.

Then this article introduces the operations of PHP array serialization and deserialization. If you want to learn more about PHP, you can follow the PHP video tutorial on the PHP Chinese website.

The above is the detailed content of What is PHP array serialization and deserialization? (Pictures + Videos). For more information, please follow other related articles on the PHP Chinese website!

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)