Home / Questions / Other PHP inheritance कैसे करते हैं? production project में safely कैसे use करें? Other 0 Views Verified PHP inheritance कैसे करते हैं? production project में safely कैसे use करें? सही विकल्प चुनें और code/solution को समझें। #php #core php #php programming #php tutorial #php error #php solution #backend #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer class Admin extends User {} class Admin extends User {} Additional Explanation extends parent class inheritance के लिए है। Production में logging और safe error handling रखें।
Verified class Admin : User {} class Admin : User {} Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified class Admin inherits User {} class Admin inherits User {} Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified inherit Admin from User inherit Admin from User Additional Explanation यह विकल्प सही Core PHP solution नहीं है।