[php] json_decode 예제

안녕하세요. 개발자 드리머즈입니다.


간단하게 json_decode()함수 테스트 코드와 결과 첨부합니다.



json_decode_test.php


<?php
$json = '{"name":"Mike","size":8}';
$arr = json_decode($json);
print_r($arr);

?> 


결과



혹시라도 잘 안되면 아래의 코드로 테스트 해보시길 바랍니다.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
    </head>
    <body>
    </body>
   
</html>


<?php
$json = '{"name":"Mike","size":8}';
$arr = json_decode($json);
print_r($arr);

?>


작성자

Posted by 드리머즈

관련 글

댓글 영역