[ php ] json 배열 출력 방식에 따른 차이
페이지 정보
작성자 웹지기 댓글 0건 조회 9,206회 작성일 18-11-06 18:06본문
$data = array('id' => '88', 'country' => 'Korea', 'brand' => 'Samsung, Sony');
이와같은 값을 json_encode($data); 하면
echo json_encode($data);
다음처럼 출력
{"id":"88","country":"Korea","brand":"Samsung, Sony"}
$data = array('88', 'Korea', 'Samsung, Sony');
이와같은 값을 json_encode($data); 하면
echo json_encode($data);
다음처럼 출력
{"88", "Korea", "Samsung, Sony"}
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.