英[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() function syntax

Function:Write files (safe for binary files).

Syntax:fwrite(file,string,length)

Parameters:

##Parameter Description file Required. Specifies the open file to be written to. string Required. Specifies the string to be written to the file. length 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() function example