SplDoublyLinkedList::serialize

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

SplDoublyLinkedList::serializeSerializes the storage

说明

public SplDoublyLinkedList::serialize(): string

Serializes the storage.

警告

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

The serialized string.

参见

添加备注

用户贡献的备注 1 note

up
-1
lincoln dot du dot j at gmail dot com
8 years ago
$a = new SplDoublyLinkedList;$arr=[1,2,3,4,5,6,7,8,9];for($i=0;$i<count($arr);$i++){    $a->add($i,$arr[$i]);}$serialize=serialize($a);echo $serialize;echo PHP_EOL,PHP_EOL;$unserialze=unserialize($serialize);print_r($unserialze);
To Top