PageRenderTime 48ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/includes/file_get_contents.inc.php

http://flumpshop.googlecode.com/
PHP | 10 lines | 10 code | 0 blank | 0 comment | 1 complexity | b3902f903df464a8258e7421299d4f66 MD5 | raw file
  1. <?php
  2. if (!function_exists('file_get_contents')) {
  3. function file_get_contents($file) {
  4. $fp = fopen($file,"w+");
  5. return fread($fp,filesize($file));
  6. fclose($fp);
  7. return true;
  8. }
  9. }
  10. ?>