unix_func.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * YunoHost - Self-hosting for all
  4. * Copyright (C) 2012 Kload <kload@kload.fr>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. function read_file($file, $lines = 20) {
  20. if (!$handle = fopen($file, "r"))
  21. return false;
  22. $linecounter = $lines;
  23. $pos = -2;
  24. $beginning = false;
  25. $text = array();
  26. while ($linecounter > 0) {
  27. $t = " ";
  28. while ($t != "\n") {
  29. if(fseek($handle, $pos, SEEK_END) == -1) {
  30. $beginning = true;
  31. break;
  32. }
  33. $t = fgetc($handle);
  34. $pos --;
  35. }
  36. $linecounter --;
  37. if ($beginning) {
  38. rewind($handle);
  39. }
  40. $text[$lines-$linecounter-1] = fgets($handle);
  41. if ($beginning) break;
  42. }
  43. fclose ($handle);
  44. return array_reverse($text);
  45. }