কনস্ট্রাক্টর এবং ডেস্ট্রাক্টর
কন্সট্রাক্টরস
<?php
class TestClass {
function __construct() {
print "From the constructor\n";
}
}
$bc = new TestClass();কন্সট্রাক্টরস ও ইনহেরিট্যান্স
<?php
class TestClass {
function __construct() {
print "From the constructor\n";
}
}
class SubClass extends TestClass {
function __construct() {
parent::__construct();
print "In SubClass constructor\n";
}
}
$test = new SubClass();ডেস্ট্রাক্টরস
Last updated