Home >Backend Development >PHP Tutorial >PHP4用户手册:函数-fwrite_PHP

PHP4用户手册:函数-fwrite_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:00866browse

手册

H1>

(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().

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn