SplDoublyLinkedList::serialize

(PHP 5 >= 5.4.0)

SplDoublyLinkedList::serializeSerializes the storage

Опис

public string SplDoublyLinkedList::serialize ( void )

Serializes the storage.

Увага

This function is currently not documented; only its argument list is available.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

The serialized string.

Прогляньте Також

add a note add a note

User Contributed Notes 1 note

up
0
lincoln dot du dot j at gmail dot com
6 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