티스토리 뷰

Dev/python

[PHP]PHP에서 json 파일로 저장하기 (Save to json file in PHP)

가지가지하는 부부 - do variety 2021. 1. 28. 12:27

 

보통 PHP에서는 json 으로 encode 하여 사용합니다. 
Usually in PHP, it is encoded as json and used.

$json = json_encode($result,JSON_PRETTY_PRINT);

하지만 별도의 json file 로 저장하기 위해서는 아래 방법을 사용하면 됩니다.
However, to save as a separate json file, you can use the method below.

$json = json_encode($result,JSON_PRETTY_PRINT);
file_put_contents("xx.json", $json);

동일 폴더에 xx.json file에 생성된 것을 볼 수 있습니다.
You can see that the xx.json file was created in the same folder.

댓글
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함