SplFileObject::__construct
(PHP 5 >= 5.1.0)
SplFileObject::__construct — Construct a new file object.
Beschreibung
$filename
[, string $open_mode = "r"
[, bool $use_include_path = false
[, resource $context
]]] )Construct a new file object.
Parameter-Liste
-
filename -
The file to read.
TippMit dieser Funktion können Sie eine URL als Dateinamen verwenden, falls Sie fopen wrappers ermöglicht haben. Mehr Details dazu, wie Sie den Dateinamen angeben müssen finden Sie bei fopen(). 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 finden Sie unter Unterstützte Protokolle and Wrappers.
-
open_mode -
The mode in which to open the file. See fopen() for a list of allowed modes.
-
use_include_path -
Whether to search in the include_path for
filename. -
context -
A valid context resource created with stream_context_create().
Rückgabewerte
Es wird kein Wert zurückgegeben.
Fehler/Exceptions
Throws a RuntimeException if the filename cannot be opened.
Beispiele
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 ?>
Siehe auch
- SplFileInfo::openFile() - Gets an SplFileObject object for the file
- fopen() - Öffnet eine Datei oder URL