php save json to file code example
Example 1: save json to file
import json
data = {}
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)
Example 2: convert text file to json php
<?php
header('Content-type: application/json');
echo json_encode( explode("\r\n",file_get_contents('data.txt')) );
?>