首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SplFileObject::fwrite

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::fwrite — Write to file

Description

代码语言:javascript
复制
public int SplFileObject::fwrite ( string $str [, int $length ] )

Writes the contents of string to the file

Parameters

str

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.

Return Values

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

Examples

Example #1 SplFileObject::fwrite() example

代码语言:javascript
复制
<?php
$file?=?new?SplFileObject("fwrite.txt",?"w");
$written?=?$file->fwrite("12345");
echo?"Wrote?$written?bytes?to?file";
?>

The above example will output something similar to:

代码语言:javascript
复制
Wrote 5 bytes to file

See Also

  • fwrite() - Binary-safe file write

← SplFileObject::ftruncate

SplFileObject::getChildren →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com