json_decode函数可以如下所示使用-
json_decode($json_string_that_needs_to_be_converted, true);
以下代码行可用于将JSONL转换为数组格式-
$json_string = '["m@gmail.com","p@gmail.com","q@gmail.com"]'; $array_of_data=json_decode($json_string);
一种替代方法是使用以下代码,其中已定义json_string的方式发生了变化-
$json_string = "[\"m@gmail.com\",\"p@gmail.com\",\"q@gmail.com\"]"; $array_of_data=json_decode($json_string);
输出结果
这将产生以下输出-
Array("m@gmail.com","p@gmail.com","q@gmail.com")