fwrite() - 写入文件(可安全用于二进制文件)
说明:
fwrite ( resource $handle
, string $string
[, int $length
] ) : int
参数:
handle
文件系统指针,是典型地由 fopen() 创建的 resource(资源)。
string
The string that is to be written.
length
如果指定了 length
,当写入了 length
个字节或者写完了 string
以后,写入就会停止,视乎先碰到哪种情况。
注意如果给出了 length
参数,则 magic_quotes_runtime 配置选项将被忽略,而 string
中的斜线将不会被抽去。
返回值:
fwrite() 返回写入的字符数,出现错误时则返回 FALSE
。
参考链接:
Enjoy it !