|
SplFileObject::fgetcsvファイルから行を取り出し CSV フィールドとして処理する 説明
public arrayfalse SplFileObject::fgetcsv(string
$separator = ",", string $enclosure = "\"", string $escape = "\\")CSV フォーマットのファイルから行を取り出し読み込まれたフィールドを含む配列を返します。
パラメータ
警告
戻り値
読み込まれたフィールドを含む数値添字配列もしくはエラーのときは
変更履歴
例
例1 SplFileObject::fgetcsv の例
例2
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 参考
|