aboutsummaryrefslogtreecommitdiffstats
path: root/include/php_compat
diff options
context:
space:
mode:
Diffstat (limited to 'include/php_compat')
-rw-r--r--include/php_compat/file_put_contents.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/php_compat/file_put_contents.php b/include/php_compat/file_put_contents.php
new file mode 100644
index 000000000..679d9c984
--- /dev/null
+++ b/include/php_compat/file_put_contents.php
@@ -0,0 +1,14 @@
+<?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