parent root
PHP: SplFileObject::__toString - Manual
PHP 7.2.23 Release Announcement

SplFileObject::__toString

(PHP 5 >= 5.1.0, PHP 7)

SplFileObject::__toStringAlias of SplFileObject::fgets()

Description

This method is an alias of: SplFileObject::fgets().

Changelog

Version Description
7.2.19, 7.3.6 Changed from an alias of SplFileObject::current() to an alias of SplFileObject::fgets().
add a noteadd a note

User Contributed Notes 1 note

up
0
Anonymous
11 months ago
Please note that the __toString() method is just an alias, as pointed out above, and that THAT method may return an array instead of a string. So in effect you might call a __toString() and expect a string, but instead receive an array.
To Top
parent root