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

藏色散人
Release: 2018-09-30 09:23:28
Original
4893 people have browsed it

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!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!