SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

function constructor() {}

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

construct User() {}

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

__constructor() {}

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

public function __construct() {}

public function __construct() {}
Additional Explanation
__construct object creation पर call होता है। पहले exact error message, line number और input value check करें।