PHP: serialize() function
Description
The serialize() converts a storable representation of a value.
A serialize data means a sequence of bits so that it can be stored in a file, a memory buffer, or transmitted across a network connection link.
Version:
(PHP 4 and above)
Syntax:
serialize(value1)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
value1 | The value to be serialized | Required | Mixed* |
*Mixed: Mixed indicates that a parameter may accept multiple (but not necessarily all) types.
Return value:
A string.
Value Type: String.
Example:
<?php
$serialized_data = serialize(array('Math', 'Language', 'Science'));
echo $serialized_data . '<br>';
?>
Output:
a:3:{i:0;s:4:"Math";i:1;s:8:"Language";i:2;s:7:"Science";}
View the example in the browser
Practice here online :
See also
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/serialize.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics