Tag: oop php

23
Apr
2016

PHP OOP Practice

Without Constructors: class_lib.php <?php class person{ var $name_tame; function set_name($new_name) { $this->$name_tame=$new_name; } function get_name() { return…