Skip to content

Instantly share code, notes, and snippets.

@level09
Created May 1, 2012 11:40
Show Gist options
  • Save level09/2567488 to your computer and use it in GitHub Desktop.
Save level09/2567488 to your computer and use it in GitHub Desktop.
Write file in php
function write($path, $content, $mode="w+")
{ if (file_exists($path) && !is_writeable($path)){ return false; } if ($fp = fopen($path, $mode)){ fwrite($fp, $content); fclose($fp); } else { return false; } return true; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment