(PHP 5 >= 5.1.0)
SplFileObject::__construct — Construct a new file object.
Construct a new file object.
The file to read.
Você pode usar uma URL como um nome de arquivo nesta função se fopen wrappers estiver habilitado. Veja fopen() para mais detalhes em como especificar o nome do arquivo e List of Supported Protocols/Wrappers para uma lista de protocolos URL suportados.
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().
Não há valor retornado.
Throws a RuntimeException if the filename cannot be opened.
Exemplo #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;
}
?>
O exemplo acima irá imprimir algo similar a:
<?php $file = new SplFileObject(__FILE__); foreach ($file as $line) { echo $line; } ?>