php_serialize
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Fork of php-serialize with some issues fixed
Ruby PHP Serializer
===================

This module provides two methods: PHP.serialize() and PHP.unserialize(), both
of which should be compatible with the similarly named functions in PHP.

Basic usage:

 require 'php_serialize'
 in = {'foo' => 'bar'}
 php = PHP.serialize(in)
 # pass string to PHP unserialize() to get array('foo' => 'bar')
 out = PHP.unserialize(php) # => {'foo' => 'bar'}


PHP.unserialize can also read PHP sessions, which are collections of named
serialized objects.  These can be reserialized using PHP.serialize_session(),
which has the same semantics as PHP.serialize(), but which only supports
Hash and associative Arrays for the root object.


Acknowledgements
================

TJ Vanderpoel, initial PHP serialized session support.

Philip Hallstrom, fix for self-generated Structs on unserialization.

Edward Speyer, fix for assoc serialization in nested structures.



Author: Thomas Hurst , http://hur.st/
WWW: http://www.aagh.net/projects/ruby-php-serialize

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。