Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

php-destruct

<?php

class NbaClub{
    public $name='jordan';
    public function __construct($name){
        $this->name = $name;
        echo "In construct\n";
    }
    public function __destruct(){
        echo "Destroying ".$this->name."\n";
    }
}

$james = new NbaClub('james lyn');
echo $james->name."\n"; //james

$james1 = $james;
$james = null; 
echo "james will not be used\n";

 

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.