PHP Classes

File: example-classes/Base.class.php

Recommend this page to a friend!
  Classes of Oleg   XML into user defined structure   example-classes/Base.class.php   Download  
File: example-classes/Base.class.php
Role: Class source
Content type: text/plain
Description: Model handler class
Class: XML into user defined structure
Create objects from definitions in a XML document
Author: By
Last change:
Date: 15 years ago
Size: 101 bytes
 

Contents

Class file image Download
<?
class Base {
    var
$data = "";

    function
add($data) {
       
$this->data .= $data."\n";
    }
}
?>