使用 PHP 将 JSONL 转换为数组
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]")
广告