Skip to content

Instantly share code, notes, and snippets.

@igoralves1
Last active April 13, 2016 20:07
Show Gist options
  • Save igoralves1/89803355da5d4fc6fd07211423c1c4dd to your computer and use it in GitHub Desktop.
Save igoralves1/89803355da5d4fc6fd07211423c1c4dd to your computer and use it in GitHub Desktop.
PHP - Save a file.
private function tool_save_File($str, $filePathNameExtention) {
$myfile = fopen("$filePathNameExtention", "w") or die("Unable to open file!");
fwrite($myfile, $str);
fclose($myfile);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment