[PHP]PHP에서 json 파일로 저장하기 (Save to json file in PHP)
보통 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.j..
Dev/python
2021. 1. 28. 12:27