<?php
class Fruit{
public $name;
function __construct($name){
$this->name = $name;
}
function getName(){
echo $this->name ."\n";
}
function __destruct(){
echo $this->name . " Object is destucted ";
}
}
$Apple = new Fruit("Apple");
$Apple->getName();
To embed this program on your website, copy the following code and paste it into your website's HTML: