Home / Questions / Other PHP associative array कैसे बनाते हैं? production project में safely कैसे use करें? Other 0 Views Verified PHP associative array कैसे बनाते हैं? 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 $user = {name: 'Manish'}; $user = {name: 'Manish'}; Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified assoc user('name','Manish'); assoc user('name','Manish'); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer $user = ['name' => 'Manish', 'age' => 25]; $user = ['name' => 'Manish', 'age' => 25]; Additional Explanation Associative arrays key => value pairs रखते हैं। Production में logging और safe error handling रखें।
Verified $user = ['name' = 'Manish']; $user = ['name' = 'Manish']; Additional Explanation यह विकल्प सही Core PHP solution नहीं है।