update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the delimiter and enclosure character for CSV

SplFileObject::getCsvControl

(PHP 5 >= 5.2.0)

SplFileObject::getCsvControlGet the delimiter and enclosure character for CSV

설명

public array SplFileObject::getCsvControl ( void )

Gets the delimiter and enclosure character used for parsing CSV fields.

인수

이 함수는 인수가 없습니다.

반환값

Returns an indexed array containing the delimiter and enclosure character.

예제

Example #1 SplFileObject::getCsvControl() example

<?php
$file 
= new SplFileObject("data.txt");
print_r($file->getCsvControl());
?>

위 예제의 출력 예시:

Array
(
    [0] => ,
    [1] => "
)

참고