Php/func filesystem fwrite
来自菜鸟教程
PHP fwrite()函数
例
写入打开的文件:
<?php $file = fopen("test.txt","w"); echo fwrite($file,"Hello World. Testing!"); fclose($file); ?>
上面代码的输出将是:
21
定义和用法
fwrite()写入打开的文件。
该功能将在文件末尾(EOF)或达到指定长度时停止,以先到者为准。
句法
fwrite(file, string, length)
参数值
参数 | 描述 |
---|---|
file | 需要。指定要写入的打开文件 |
string | 需要。指定要写入打开文件的字符串 |
length | 可选的。指定要写入的最大字节数 |
技术细节
返回值: | 写入的字节数,失败时为FALSE |
PHP版本: | 4.0+ |
二进制安全: | Yes |