PHP4用户手册:函数->fwrite

类别:编程语言 点击:0 评论:0 推荐:
fwrite

(PHP 3, PHP 4 >= 4.0.0)

fwrite -- 二进制文件写入 描述

int fwrite (int fp, string string [, int length])

fwrite() 写入字符串string 的内容到由fp指定的文件流中。如果length 给出,将写完length 指定的字节后结束。

注意,如果length 参数给出,那么magic_quotes_runtime 配置选项将被忽略,同时字符串中的“\”将不被删除。

注意:在某些系统上将区分二进制和文本文件(i.e. Windows),这个文件必须使用带有'b'参数的模式的fopen() 来打开。

参见fread(), fopen(), fsockopen(), popen(), 和 fputs().


本文地址:http://com.8s8s.com/it/it29765.htm