Home / Questions / Other PHP JSON decode associative array में कैसे करते हैं? interview में कैसे explain करेंगे? Other 0 Views Verified PHP JSON decode associative array में कैसे करते हैं? interview में कैसे explain करेंगे? सही विकल्प चुनें और 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 json_decode_assoc($json); json_decode_assoc($json); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer json_decode($json, true); json_decode($json, true); Additional Explanation Second argument true JSON objects को associative arrays में decode करता है।
Verified json_parse($json,array); json_parse($json,array); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified decode_json($json,true); decode_json($json,true); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।