Subversion Repositories HomeAutomation

Rev

Blame | Last modification | View Log | SVN | RSS feed

  1. <?php
  2.  
  3. include('config.php');
  4.  
  5. $content = file_get_contents($IRRemotes);
  6. $content = trim($content); // Trim whitespace
  7. $content = rtrim($content, "}"); // Trim trailing }
  8.  
  9. $content = strstr($content, "[");
  10.  
  11. $content = "var remotes = " . $content;
  12.  
  13. echo $content;
  14.  
  15. ?>
  16.