Detailed example of serialize() and unserialize() functions in php

墨辰丷
Release: 2023-03-26 22:20:01
Original
1411 people have browsed it

This article mainly introduces the relevant information of php's serialize() function and unserialize() function. Friends who need it can refer to

php's serialize() function and unserialize() function.

Applicable scenarios: 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. The more useful place is when storing data in a database or recording it in a file

serialize() can handle all types except resource types, and can also serialize objects

<?php 
$array = array(); 
$array[&#39;keys&#39;] = &#39;www&#39;; 
$array[&#39;values&#39;]=&#39;11111&#39;; 
$a = serialize($array); 
echo $a; 
unset($array); 
$a = unserialize($a); 
print_r($a); 
?>
Copy after login

Output

a:2:{s:4:"keys";s:3:"www";s:6:"values";s:5:"11111";}

Array ( [keys] => www [values] => 11111 )
Copy after login

The same applies to the class operation

Related recommendations :

Analysis of functionsserialize() and unserialize()Usage

##Two very useful PHP functions serialize() and unserialize()_PHP tutorial

##serialize() and unserialize()Example explanation of functions

The above is the detailed content of Detailed example of serialize() and unserialize() functions in php. 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!