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);사전>출력
이것은 다음과 같은 출력을 생성합니다 -
배열("[email protected]","[email protected]","[email protected]")