(PHP 5 >= 5.1.0)
SplFileObject::__construct — Construct a new file object.
Construct a new file object.
The file to read.
A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename and List of Supported Protocols/Wrappers for a list of supported URL protocols.
The mode in which to open the file. See fopen() for a list of allowed modes.
Whether to search in the include_path for filename .
A valid context resource created with stream_context_create().
No value is returned.
Throws a RuntimeException if the filename cannot be opened.
Example #1 SplFileObject::__construct example
This example opens the current file and iterates over its contents line by line.
<?php
$file = new SplFileObject(__FILE__);
foreach ($file as $line) {
echo $line;
}
?>
The above example will output something similar to:
<?php $file = new SplFileObject(__FILE__); foreach ($file as $line) { echo $line; } ?>