PHP Classes

File: readme

Recommend this page to a friend!
  Classes of Alexander Zhukov   PHP Shelve   readme   Download  
File: readme
Role: ???
Content type: text/plain
Description: readme file
Class: PHP Shelve
Simple persistence mechanism for php objects
Author: By
Last change:
Date: 22 years ago
Size: 637 bytes
 

Contents

Class file image Download
PHP Shelve 0.1 simple persistence mechanism for php objects, inspired by python shelve module uses plain text files to save objects; To run the unit tests you'll need the phpunit library from http://phpunit.sourceforge.net/ Usage example: class A { var $string; function A($string) { $this->string = $string; } } $shelf = new Shelve("test_shelf"); $shelf->put("a",new A("test string")); $shelf->close(); $shelf = new Shelve("test_shelf"); $a = $shelf->get("a"); print_r($a); $shelf->del("a"); $shelf->close(); $shelf->destroy(); -- (C) 2002, Alexander Zhukov <alex@veresk.ru>