Class: OutputFile
Source Location: /php/util/OutputFile.php
Class OutputFile
Method Summary
| static
void
|
excel() |
엑셀파일 다운로드 |
| static
void
|
file() |
파일 다운로드 |
| static
void
|
word() |
워드파일 다운로드 |
Methods
static void excel(
string
$filename, [string
$charset = "EUC-KR"]
)
|
|
엑셀파일 다운로드
Parameters:
|
string |
$filename: |
저장할 파일이름 (실제 파일은 $filename.xls) |
|
string |
$charset: |
인코딩 타입 |
API Tags:
static void file(
string
$filename, string
$filesize, [string
$charset = "EUC-KR"]
)
|
|
파일 다운로드
Parameters:
|
string |
$filename: |
저장할 파일이름 |
|
string |
$filesize: |
파일 사이즈 |
|
string |
$charset: |
인코딩 타입 |
API Tags:
static void word(
string
$filename, [string
$charset = "EUC-KR"]
)
|
|
워드파일 다운로드
Parameters:
|
string |
$filename: |
저장할 파일이름 (실제 파일은 $filename.doc) |
|
string |
$charset: |
인코딩 타입 |
API Tags:
|
|