PHP __construct And __destruct In Hindi

📔 : PHP 🔗

जब भी किसी class का Object Create / Destroy होता है तो उस Class के लिए दो method Automatically Run होते है - __construct() And __destruct() . जिन्हे Constructor और Destructor कहते हैं।

PHP में Constructor का principle Java , C++ से थोड़ा different है। Java में सिर्फ Constructor होता है जबकि PHP में Constructor और Destructor दोनों होते हैं।

PHP __construct()

जब किसी class का Object बनाते हैं तो __construct automatically run होता है। इसे run करने के लिए call करने जरूरत नहीं पड़ती है। लेकिन अगर Class का Object नहीं बना तो __construct() method run नहीं होगा।

बाकी Functions / Methods की तरह ही इसमें भी parameters , define कर सकते हैं।

By Default ये Non Static ही होते हैं , इन्हे आप as a static member define नही कर सकते हैं। अगर ऐसा करते हैं तो PHP Fatal Error Generate करती है।

PHP Fatal error: Constructor ClassName::__construct() cannot be static.

PHP __construct Example

<?php class MyClass { function __construct() { echo 'Object Initialized'; } } new MyClass; ?>

Output

Object Initialized 

PHP में Class का Object बनाते समय ClassName के बाद parenthesis skip कर सकते हैं।

अब अगर आप parameter भी define करना चाहते हो तो class Object बनाते समय उन parameters की value pass करनी पड़ेगी।
For Example :

<?php class MyClass { function __construct($param, $default_param = 'Default Value') { echo 'Param : '.$param; echo '<br>'; /* for line break*/ echo 'Default Parame : '. $default_param; } } new MyClass('Test Param Value'); ?>

Output

Param : Test Param Value
Default Parame : Default Value 

इसके अलावा अगर आप define की गयी Class Property में Constructor value assign करना चाहते हैं , तो simply $this का use करके assign कर सकते हैं।

<?php class MyClass { public $fullname; function __construct($fullname) { $this->fullname = $fullname; } function getName() { echo 'Welcome : '. $this->fullname; } } $obj = new MyClass('Rahul Kumar Verma'); $obj->getName(); ?>

PHP __destruct()

__destruct , तब automatically run होता है जब Initialize किया गया Class Object destroy होता है। हालाँकि जब script end होती है तो Class Object destroy हो जाते हैं।

PHP __destruct Example

<?php class MyClass { function __construct() { echo 'Object Initialized';; } function __destruct() { echo '<br>'; /** For line break */ echo 'Object Destroyed'; } } new MyClass; ?>

Output

Object Initialized
Object Destroyed

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook