Implementing a Simple Class : Class Definition « Class « PHP






Implementing a Simple Class

 
<?php
class SimpleClass {
    public $data;
    public function echoMyData() {
        echo $this->data;
    }
}

$sc_object = new SimpleClass();

$sc_object->data = "Hello, world! ";

$another_object = new SimpleClass();
$another_object->data = "Goodbye, world! ";

$sc_object->echoMyData();
$another_object->echoMyData();
?>
  
  








Related examples in the same category

1.A Basic PHP 4 Class
2.A Basic PHP 5 Class
3.A class is a collection of variables and functions working with these variables.
4.Aggregating an address object
5.Bird class
6.Basic Object Accessing
7.Class Type Hints
8.Person class
9.PHP class declaration structure
10.book class
11.Pre-defined methods
12.Using an aggregated class
13.Empty class