SarkariResultess QA Bank

PHP constructor method कौन सा है? इसका working code example क्या है?

Other 0 Views Verified
PHP constructor method कौन सा है? इसका working code example क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

__constructor() {}

__constructor() {}
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

function constructor() {}

function constructor() {}
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

public function __construct() {}

public function __construct() {}
Additional Explanation
__construct object creation पर call होता है।
Verified

construct User() {}

construct User() {}
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।