search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage Server PHP php fwrite() function
php fwrite() function Detailed instructions for use

php fwrite() function

Chinese translation Recent Updates: 2018-04-19 10:17:04

英[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:

##ParameterDescriptionfile 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

<?php
$file = fopen("./test.txt","w");
echo fwrite($file,"历经九九八十一难");
?>
php fwrite() function