Home / Questions / Other PHP inheritance कैसे करते हैं? इसका working code example क्या है? Other 0 Views Verified PHP inheritance कैसे करते हैं? इसका working code example क्या है? सही विकल्प चुनें और 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 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 नहीं है।
Verified Correct Answer class Admin extends User {} class Admin extends User {} Additional Explanation extends parent class inheritance के लिए है।
Verified class Admin : User {} class Admin : User {} Additional Explanation यह विकल्प सही Core PHP solution नहीं है।