PHP » GoLang |
login |
register |
about
|
GoLang SplFileObject::fgetcsv
request it (395)
GoLang replacement for PHP's SplFileObject::fgetcsv
[edit | history]
SplFileObject::fgetcsv(PHP 5 >= 5.1.0, PHP 7) SplFileObject::fgetcsv — Gets line from file and parse as CSV fields Description
public array SplFileObject::fgetcsv
([ string
$delimiter = ","
[, string $enclosure = "\""
[, string $escape = "\\"
]]] )Gets a line from the file which is in CSV format and returns an array containing the fields read. Parameters
Return Values
Returns an indexed array containing the fields read, or
Examples
Example #1 SplFileObject::fgetcsv() example
<?php
Example #2
<?php Contents of animals.csv crocodile,reptile,4 dolphin,mammal,0 duck,bird,2 koala,mammal,4 salmon,fish,0 The above example will output something similar to: A crocodile is a reptile with 4 legs A dolphin is a mammal with 0 legs A duck is a bird with 2 legs A koala is a mammal with 4 legs A salmon is a fish with 0 legs See Also
|
more
Recently updated
more
Most requested
more
Last requests
|