PHP » GoLang |
login |
register |
about
|
GoLang SplFileObject::current
request it (414)
GoLang replacement for PHP's SplFileObject::current
[edit | history]
SplFileObject::current(PHP 5 >= 5.1.0, PHP 7) SplFileObject::current — Retrieve current line of file Description
public string|array SplFileObject::current
( void
)
Retrieves the current line of the file. ParametersThis function has no parameters. Return Values
Retrieves the current line of the file. If the Examples
Example #1 SplFileObject::current() example
<?php The above example will output something similar to: 1: <?php 2: $file = new SplFileObject(__FILE__); 3: foreach ($file as $line) { 4: echo ($file->key() + 1) . ': ' . $file->current(); 5: } 6: ?> See Also
|
more
Recently updated
more
Most requested
more
Last requests
|