read_write_functions.php 353 B

12345678910111213141516
  1. <?php
  2. function readJsonFile ($filePath = DATABASE_FILE) {
  3. $file_content = file_get_contents($filePath);
  4. $json = json_decode($file_content, true);
  5. return $json;
  6. }
  7. function writeJsonFile ($file_content, $filePath = DATABASE_FILE) {
  8. $fp = fopen($filePath, 'w');
  9. fwrite($fp, json_encode($file_content));
  10. fclose($fp);
  11. }
  12. ?>