जैसा कि नीचे दिखाया गया है, json_decode फ़ंक्शन का उपयोग किया जा सकता है -
json_decode($json_string_that_needs_to_be_converted, true);
JSONL को सरणी प्रारूप में बदलने के लिए कोड की निम्न पंक्तियों का उपयोग किया जा सकता है -
$json_string = '["[email protected]","[email protected]","[email protected]"]'; $array_of_data=json_decode($json_string);
एक विकल्प नीचे दिए गए कोड का उपयोग करना है, जिसमें json_string को परिभाषित करने का तरीका बदल जाता है -
उदाहरण
$json_string = "[\"[email protected]\",\"[email protected]\",\"[email protected]\"]"; $array_of_data=json_decode($json_string);
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Array("[email protected]","[email protected]","[email protected]")