fwrite 用于向已打开的文件写入数据,语法为 fwrite($handle, $string, $length = NULL),其中 $handle 是文件指针,$string 是要写入的数据,$length 是要写入的字节数(可选)。fwrite 成功写入时返回写入的字节数,失败时返回 FALSE。
fwrite 函数在 PHP 中的用法
什么是 fwrite?
fwrite 是 PHP 中一个内置函数,用于向已打开的文件写入数据。
语法:
<code class="php">int fwrite(resource $handle, string $string, int $length = NULL)</code>
参数:
$handle
:已打开的文件指针,由 fopen() 函数返回。$string
:要写入文件的数据(字符串)。$length
:要写入的字节数(可选)。默认为 strlen($string)。返回值:
fwrite 成功写入数据时返回写入的字节数,写入失败时返回 FALSE。
用法:
打开文件后,可以使用 fwrite 函数向文件中写入数据:
<code class="php">$handle = fopen("myfile.txt", "w"); fwrite($handle, "Hello, world!"); fclose($handle);</code>
上面的代码将字符串 "Hello, world!" 写入名为 "myfile.txt" 的文件中。
注意:
以上是php中fwrite函数的用法的详细内容。更多信息请关注PHP中文网其他相关文章!