Creating a blank file
Moderator: General Moderators
-
Bennettman
- Forum Contributor
- Posts: 130
- Joined: Sat Jun 15, 2002 3:58 pm
Creating a blank file
Are there functions to delete files and to create blank files on the server with a specified filename?
- hob_goblin
- Forum Regular
- Posts: 978
- Joined: Sun Apr 28, 2002 9:53 pm
- Contact:
delete files:
http://php.net/unlink
make a blank file:
http://php.net/fopen
fopen() will try to make the file if the file you try to open does not exist.
http://php.net/unlink
make a blank file:
http://php.net/fopen
fopen() will try to make the file if the file you try to open does not exist.
-
Bennettman
- Forum Contributor
- Posts: 130
- Joined: Sat Jun 15, 2002 3:58 pm