PHP fwrite() fwrite() 函数用于向文件写入字符串,成功返回写入的字符数,否则返回 FALSE . 语法: int fwrite( resource handle, string string [, int length] ) fwrite() 把 string 的内容写入文件指针 handle 处. 参数说明: 参数 说明 handle 要写入字符串的文件指针,一般由 fopen() 函数创建 data 要写入的字符串 length 可选,规定要写入的最大字节数 如果指定了可…