/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
- <?php
- if (!function_exists('file_get_contents')) {
- function file_get_contents($file) {
- $fp = fopen($file,"w+");
- return fread($fp,filesize($file));
- fclose($fp);
- return true;
- }
- }
- ?>