How to Convert JSON String to Array Using PHP?

How can you convert any JSON string to array via php. Today you will be told through this tutorial.

JSON String to array conversion in php, Convert a JSON string into array PHP, convert JSON string to array php, PHP convert JSON string to array

<?php 
$jsonString = '["jyoti@gmail.com","gargi@gmail.com","my@gmail.com"]';
$arrayOfEmails=json_decode($jsonString);
?>