(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::__construct — Construct a new file object
$filename,$mode = "r",$useIncludePath = false,$context = nullConstruct a new file object.
filenameThe file to read.
Wenn fopen wrappers aktiviert ist, kann mit dieser Funktion eine URL als Dateiname verwendet werden. Mehr Details dazu, wie der Dateiname angeben werden muss, sind bei fopen() zu finden. Eine Liste der unterstützten URL-Protokolle, die Fähigkeiten der verschiedenen Wrapper, Hinweise zu deren Verwendung und Informationen zu den eventuell vorhandenen vordefinierten Variablen sind unter Unterstützte Protokolle und Wrapper zu finden.
modeThe mode in which to open the file. See fopen() for a list of allowed modes.
useIncludePath
Whether to search in the include_path for filename.
contextA valid context resource created with stream_context_create().
Throws a RuntimeException if the filename cannot be opened.
Throws a LogicException if the filename is a directory.
Beispiel #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_num => $line) {
echo "Line $line_num is $line";
}
?>Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Line 0 is <?php
Line 1 is $file = new SplFileObject(__FILE__);
Line 2 is foreach ($file as $line_num => $line) {
Line 3 is echo "Line $line_num is $line";
Line 4 is }
Line 5 is ?>