CakeFest 2024: The Official CakePHP Conference

SplFileObject::fwrite

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

SplFileObject::fwriteWrite to file

说明

public SplFileObject::fwrite(string $data, int $length = 0): int|false

Writes the contents of string to the file

参数

data

The string to be written to the file.

length

If the length argument is given, writing will stop after length bytes have been written or the end of string is reached, whichever comes first.

返回值

Returns the number of bytes written, or false on error.

更新日志

版本 说明
7.4.0 The function now returns false instead of zero on failure.

示例

示例 #1 SplFileObject::fwrite() example

<?php
$file
= new SplFileObject("fwrite.txt", "w");
$written = $file->fwrite("12345");
echo
"Wrote $written bytes to file";
?>

以上示例的输出类似于:

Wrote 5 bytes to file

参见

  • fwrite() - 写入文件(可安全用于二进制文件)

add a note

User Contributed Notes 1 note

up
14
bas dot hilbers at tribal-im dot com
10 years ago
Your \SplFileObject will not throw an exception when trying to write to a non-writeable stream!

I forgot to set the second parameter on my \SplFileObject constructor (the mode), costing me minutes to figure out why nothing was writter by the fwrite method...

Just to let you know!
To Top