PHP » GoLang |
login |
register |
about
|
GoLang SplFileObject::__construct
request it (336)
GoLang replacement for PHP's SplFileObject::__construct
[edit | history]
PHP SplFileObject::__constructPHP original manual for SplFileObject::__construct [ show | php.net ]SplFileObject::__construct(PHP 5 >= 5.1.0, PHP 7) SplFileObject::__construct — Construct a new file object Description
public SplFileObject::__construct
( string
$filename
[, string $open_mode = "r"
[, bool $use_include_path = FALSE
[, resource $context
]]] )Construct a new file object. Parameters
Return ValuesNo value is returned. Errors/Exceptions
Throws a RuntimeException if the Examples
Example #1 SplFileObject::__construct() example This example opens the current file and iterates over its contents line by line.
<?php The above example will output something similar to: 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 ?> See Also
|
more
Recently updated
more
Most requested
more
Last requests
|