update : 2015.11.03
php.shukuma.com

검색:
 
 
Serializes the storage

SplObjectStorage::serialize

(PHP 5 >= 5.2.2)

SplObjectStorage::serializeSerializes the storage

설명

public string SplObjectStorage::serialize ( void )

Returns a string representation of the storage.

인수

이 함수는 인수가 없습니다.

반환값

A string representing the storage.

예제

Example #1 SplObjectStorage::serialize() example

<?php
$s 
= new SplObjectStorage;
$o = new StdClass;
$s[$o] = "data";

echo 
$s->serialize()."\n";
?>

위 예제의 출력 예시:

x:i:1;O:8:"stdClass":0:{},s:4:"data";;m:a:0:{}

참고