php fwrite() function
Translation results:
英[raɪt] 美[raɪt]
vt.& vi. write; write; write; compose
Third person singular: writes Present participle: writing Past tense: wrote past Participle: written
php fwrite() functionsyntax
Function: Write files (safe for binary files).
Syntax: fwrite(file,string,length)
Parameters:
Description | |
Required. Specifies the open file to be written to. | |
Required. Specifies the string to be written to the file. | |
Optional. Specifies the maximum number of bytes to be written. |
Description: fwrite() writes the contents of string to the file pointer file. If length is specified, writing will stop when length bytes have been written or when the string has been written, whichever situation is encountered first.
php fwrite() functionexample
<?php $file = fopen("./test.txt","w"); echo fwrite($file,"历经九九八十一难"); ?>