fwrite() 函数写入打开的文件。它在成功时返回写入的字节数,而在失败时返回 False。
用法
fwrite(file_pointer, string, length)
参数
file_pointer −使用 fopen() 创建的文件系统指针。必需的。
string −要写入的字符串。必需的。
length −要写入的最大字节数。可选的。
返回
fwrite() 函数在成功时返回写入的字节数,而在失败时返回 False。
示例
<?php
$file_pointer = fopen("new.txt","w");
echo fwrite($file_pointer,"This is test string!");
fclose($file);
?>
输出
20
相关用法
- PHP fwrite( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP flock()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP fgets()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP function_exists()用法及代码示例
- PHP fmod()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP fputs()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP filter_id()用法及代码示例
- PHP ftp_nb_fget()用法及代码示例
- PHP fgetc()用法及代码示例
- PHP ftell( )用法及代码示例
- PHP fputs( )用法及代码示例
- PHP fpassthru()用法及代码示例
- PHP filter_var_array()用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 fwrite() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。