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

SplFileObject::fread

(PHP 5 >= 5.5.11, PHP 7)

SplFileObject::fread — Read from file

Description

代码语言:javascript
复制
public string SplFileObject::fread ( int $length )

Reads the given number of bytes from the file.

Parameters

length

The number of bytes to read.

Return Values

Returns the string read from the file or FALSE on failure.

Examples

Example #1 SplFileObject::fread() example

代码语言:javascript
复制
<?php
//?Get?contents?of?a?file?into?a?string
$filename?=?"/usr/local/something.txt";
$file?=?new?SplFileObject($filename,?"r");
$contents?=?$file->fread($file->getSize());
?>

Notes

Note: Note that SplFileObject::fread() reads from the current position of the file pointer. Use SplFileObject::ftell() to find the current position of the pointer and SplFileObject::rewind() (or SplFileObject::fseek()) to rewind the pointer position.

See Also

  • fread() - Binary-safe file read

← SplFileObject::fputcsv

SplFileObject::fscanf →

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

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

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com