Skip to content

Instantly share code, notes, and snippets.

@Bhavya8181
Forked from jack2jm/Write to text file
Created February 12, 2024 05:53
Show Gist options
  • Save Bhavya8181/c2761131193d27390cc9a34e79a5472a to your computer and use it in GitHub Desktop.
Save Bhavya8181/c2761131193d27390cc9a34e79a5472a to your computer and use it in GitHub Desktop.
*********
Open file path
--------------------
$myfile = fopen("data/finalized-ids.txt", "a+") or die("Unable to open file!");
Write something into file
--------------
fwrite($myfile, "event_ids,". PHP_EOL);
Close file
-------------------
fclose($myfile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment