PHP 클래스 Horde_Data_Tsv, horde

Copyright 1999-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
저자: Jan Schneider ([email protected])
저자: Chuck Hagenbuch ([email protected])
상속: extends Horde_Data_Base
파일 보기 프로젝트 열기: horde/horde 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_contentType string MIME content type.
$_extension string File extension.

공개 메소드들

메소드 설명
exportData ( array $data, boolean $header = false ) : string Builds a TSV file from a given data structure and returns it as a string.
exportFile ( string $filename, array $data, boolean $header = false ) Builds a TSV file from a given data structure and triggers its download.
importData ( string $contents, boolean $header = false, string $delimiter = " " ) : array Convert data file contents to list of data records.
nextStep ( integer $action, array $param = [] ) : mixed Takes all necessary actions for the given import step, parameters and form values and returns the next necessary step.

메소드 상세

exportData() 공개 메소드

Builds a TSV file from a given data structure and returns it as a string.
public exportData ( array $data, boolean $header = false ) : string
$data array A two-dimensional array containing the data set.
$header boolean If true, the rows of $data are associative arrays with field names as their keys.
리턴 string The TSV data.

exportFile() 공개 메소드

It DOES NOT exit the current script but only outputs the correct headers and data.
public exportFile ( string $filename, array $data, boolean $header = false )
$filename string The name of the file to be downloaded.
$data array A two-dimensional array containing the data set.
$header boolean If true, the rows of $data are associative arrays with field names as their keys.

importData() 공개 메소드

Convert data file contents to list of data records.
public importData ( string $contents, boolean $header = false, string $delimiter = " " ) : array
$contents string Data file contents.
$header boolean True if a header row is present.
$delimiter string Field delimiter.
리턴 array List of data records.

nextStep() 공개 메소드

Takes all necessary actions for the given import step, parameters and form values and returns the next necessary step.
public nextStep ( integer $action, array $param = [] ) : mixed
$action integer The current step. One of the IMPORT_* constants.
$param array An associative array containing needed parameters for the current step.
리턴 mixed Either the next step as an integer constant or imported data set after the final step.

프로퍼티 상세

$_contentType 보호되어 있는 프로퍼티

MIME content type.
protected string $_contentType
리턴 string

$_extension 보호되어 있는 프로퍼티

File extension.
protected string $_extension
리턴 string