Last active
April 13, 2016 20:07
-
-
Save igoralves1/89803355da5d4fc6fd07211423c1c4dd to your computer and use it in GitHub Desktop.
PHP - Save a file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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