Repositorio del curso CCOM4030 el semestre B91 del proyecto Trolley

reciver.php 1.6KB

12345678910111213141516171819202122232425
  1. <?php
  2. function read_and_delete_first_line($filename) // This function will delete the first line of db.txt.
  3. {
  4. $file = file($filename); //Makes the contents of db.txt into an array.
  5. array_shift($file); //Removes the first element of the array.
  6. file_put_contents($filename, $file); //Rewrites db.txt with the contents of the array.
  7. }
  8. $decoded_location = json_decode(file_get_contents('php://input')); //Receives input from app and decodes the json recived.
  9. $decoded_location->inTime = gmdate('H:i:s',time()); //Adds a new property to the object we get after decoding the json and stores the current time.
  10. $encoded_location = json_encode($decoded_location); //Reencodes the object back into a json with the new inTime property.
  11. $file = 'db.txt';
  12. $totalLines = intval(exec("wc -l '$file'")); //Counts how many lines db.txt has.
  13. //echo $totalLines. "\n"; //For testing purposes
  14. if($totalLines > 15) //If db.txt has more than a specified amount of lines, it will delete the first line of db.txt.
  15. {
  16. read_and_delete_first_line("db.txt");
  17. }
  18. $db = fopen("db.txt","a") or die("FAILED TO ACCESS DATABASE"); //Opens db.txt in append mode. If it somehow fails to open the database, an error message will be displayed.
  19. fwrite($db,$encoded_location. "\n"); //Writes the newly encoded json into db.txt.
  20. fclose($db); //Closes db.txt
  21. //$totalLines = intval(exec("wc -l '$file'")); //For testing purposes
  22. //echo $totalLines; //For testing purposes
  23. ?>