Hàm json_decode có thể được sử dụng như hình dưới đây -
json_decode($json_string_that_needs_to_be_converted, true);
Các dòng mã dưới đây có thể được sử dụng để chuyển đổi JSONL sang định dạng mảng -
$json_string = '["[email protected]","[email protected]","[email protected]"]'; $array_of_data=json_decode($json_string);
Một phương pháp thay thế là sử dụng đoạn mã dưới đây, trong đó cách json_string đã được xác định sẽ thay đổi -
Ví dụ
$json_string = "[\"[email protected]\",\"[email protected]\",\"[email protected]\"]"; $array_of_data=json_decode($json_string);
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Array("[email protected]","[email protected]","[email protected]")