<?php class Fruit { public $name; public function __construct($n = "Fruit") { $this->name = $n; } public function __destruct() { echo "\nBye bye fruit\n"; } } $fruit = new Fruit("Banana"); echo $fruit->name;
You have javascript disabled. You will not be able to edit any code.