Code has been added to clipboard!

Useful PHP Functions

Example
<?php
 $new_file = fopen('empty.txt', 'w');
 fclose($new_file);
?>