DevPicker
Modern online tools to simplify ordinary users and developers daily life. This website has essential impact for everyone.
PHP Unserialize
Generates a storable representation of a value.
This is useful for storing or passing PHP values around without losing their type and structure.
To make the serialized string into a PHP value again, use unserialize().
How it Works?
Just paste PHP serialized text into the above text area and click the "Serialize" button and you will get a unserialized PHP array.
Example of unserialize to PHP Array
Before:a:1:{s:7:"website";a:2:{s:6:"domain";s:13:"devpicker.com";s:5:"title";s:16:"Online web tools";}}After:
[ 'website' => [ 'domain' => 'devpicker.com', 'title' => 'Online Web Tools', ], ]