php fwrite 追加写入,PHP fwrite 函数:将字符串写入文件(追加与换行)

PHP fwrite()

fwrite() 函数用于向文件写入字符串,成功返回写入的字符数,否则返回 FALSE 。

语法:

int fwrite( resource handle, string string [, int length] )

fwrite() 把 string 的内容写入文件指针 handle 处。

参数说明:

参数

说明

handle

要写入字符串的文件指针,一般由 fopen() 函数创建

data

要写入的字符串

length

可选,规定要写入的最大字节数

如果指定了可选参数 length,当写入了 length 个字节或者写完了 string 以后,写入就会停止。

例子:

// 要写入的文件名字

$filename = 'file.txt';

// 写入的字符

$word = "你好!";

$fh = fopen($filename, "w");

echo fwrite($fh, $word); // 输出:6

fclose($fh);

?>

执行该例子程序,在程序同目录下,file.txt 文件内容为:你好!

使用 length 参数

上面的例子中,如果使用了 length 参数,则至多写入 length 个字符串:

echo fwrite($fh, $word, 4

你可能感兴趣的:(php,fwrite,追加写入)