Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Created August 30, 2017 10:20
Show Gist options
  • Save Bizunow/bc3ac99e7d846677fb09045dc7354bc5 to your computer and use it in GitHub Desktop.
Save Bizunow/bc3ac99e7d846677fb09045dc7354bc5 to your computer and use it in GitHub Desktop.
[PHP fwrite example] #php
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
fwrite($myfile, print_r($data, true));
fclose($myfile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment