Conversion method: 1. Use "unserialize($str)" to restore the serialized data; 2. Use json_encode() and json_decode() to convert the restored data into an array type, the syntax "json_decode(json_encode() Restore data),TRUE)".
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
We sometimes encounter during the development process It is necessary to serialize and store objects or arrays and deserialize them for output. Especially when you need to store an array into a MySQL database, you need to serialize the array.
All values in PHP can be converted into a string that can be stored using the serialize() function, which is serialization.
If you want to restore the serialized data, you can use the unserialize() function; this function can change the string back to the original value of PHP, that is, deserialization.
php method to convert serialized data into an array
1. Use the unserialize() function to restore serialized data
unserialize($str)
Among them, $str is the string serialized using the serialize() function. If the incoming string cannot be deserialized, FALSE is returned and an E_NOTICE is generated.
2. Convert the restored data to an array type
Use the json_encode function to convert the object into json data, and then use the json_decode function to convert the json data into an array.
<?php $obj=serialize((object)array("11","22","33")); var_dump($obj); $res=unserialize($obj); $arr=json_decode(json_encode($res),TRUE); var_dump($arr); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to convert serialized data into array in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor
