aboutsummaryrefslogtreecommitdiffstats
path: root/include/php_compat/file_put_contents.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/php_compat/file_put_contents.php')
-rw-r--r--include/php_compat/file_put_contents.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/php_compat/file_put_contents.php b/include/php_compat/file_put_contents.php
deleted file mode 100644
index 679d9c984..000000000
--- a/include/php_compat/file_put_contents.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-//php 5
-function file_put_contents($filename, $data)
-{
- $fp = fopen($filename, 'w');
- if ($fp)
- {
- $ret = fwrite($fp, $data);
- fclose($fp);
- return $ret;
- }
- return false;
-}
-?> \ No newline at end of file