Vtiful\Kernel\Excel::insertText
(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::insertText — Vtiful\Kernel\Excel insertText
説明
public Vtiful\Kernel\Excel::insertText(
int
int
int|float|string
string
)
int
$row
,int
$column
,int|float|string
$data
,string
$format
= ?)
Write text in a cell.
パラメータ
row
-
cell row
column
-
cell column
data
-
data to be written
format
-
String format
戻り値
Vtiful\Kernel\Excel instance
例
例1 example
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$file = $excel->fileName("free.xlsx")
->header(['name', 'money']);
for ($index = 0; $index < 10; $index++) {
$file->insertText($index+1, 0, 'viest');
$file->insertText($index+1, 1, 10000, '#,##0');
}
$textFile->output();
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google