Mega Code Archive

 
Categories / Php / Class
 

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(); ?>