Home / Questions / Other PHP object कैसे create करते हैं? में developers की common mistake क्या है? Other 0 Views Verified PHP object कैसे create करते हैं? में developers की common mistake क्या है? सही विकल्प चुनें और 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 $user = create User(); $user = create User(); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer $user = new User(); $user = new User(); Additional Explanation new class object instantiate करता है।
Verified $user = User.new(); $user = User.new(); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified new object User; new object User; Additional Explanation यह विकल्प सही Core PHP solution नहीं है।