Login
Remember
Register
Ask a Question
How to write in a file in PHP?
0
votes
asked
Jun 6, 2020
in
PHP
by
SakshiSharma
How to write in a file in PHP?
#php-write-file
#write-file-php
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 6, 2020
by
Robindeniel
PHP fwrite() and fputs() functions are used to write data into file. To write data into a file, you need to use w, r+, w+, x, x+, c or c+ mode.
...