PHP fwrite() 函数
实例
写入打开的文件:
<?php
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>
上述代码的输出为:
21
定义和用法
fwrite() 函数写入文件(可安全用于二进制文件)。
函数将在文件末尾(EOF)或达到指定长度时停止,以先到者为准。
语法
fwrite(file, string, length)
参数值
参数 | 描述 |
---|---|
file | 必需。规定要写入的打开文件。 |
string | 必需。规定要写入文件的字符串。 |
length | 可选。规定要写入的最大字节数。 |
说明
fwrite() 把 string 的内容写入文件指针 file 处。 如果指定了 length,当写入了 length 个字节或者写完了 string 以后,写入就会停止,视乎先碰到哪种情况。
fwrite() 返回写入的字符数,出现错误时则返回 false。
技术细节
返回值: | 写入的字节数,失败为 FALSE |
---|---|
PHP 版本: | 4.0+ |
Binary Safe: | Yes |