update : 2015.11.03
php.shukuma.com검색:
|
SplFileObject::getCsvControl(PHP 5 >= 5.2.0) SplFileObject::getCsvControl — Get 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 위 예제의 출력 예시: Array ( [0] => , [1] => " ) 참고
|