Skip to content

Instantly share code, notes, and snippets.

@mbootsman
Created November 24, 2022 09:27
Show Gist options
  • Save mbootsman/8442b8678b14d11516845272bcf3e75b to your computer and use it in GitHub Desktop.
Save mbootsman/8442b8678b14d11516845272bcf3e75b to your computer and use it in GitHub Desktop.
write/read from file test php
<?php
echo file_put_contents('file.txt', 'bar');
echo file_get_contents('file.txt'); // bar
echo "<br />";
file_put_contents('file.txt', 'foo');
echo file_get_contents('file.txt'); // foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment