update : 2015.11.03
php.shukuma.com검색:
|
SplFileObject::fgetcsv(PHP 5 >= 5.1.0) SplFileObject::fgetcsv — Gets line from file and parse as CSV fields 설명
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. 인수
반환값
Returns an indexed array containing the fields read, or
예제
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 위 예제의 출력 예시: 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 참고
|