函数原型

  1. insertDate(int $row, int $column, int $timestamp[, string $dateFormat = 'yyyy-mm-dd hh:mm:ss', resource $formatHandler])

int $row

单元格所在行

int $column

单元格所在列

int $timestamp

需要写入的时间戳

string $dataFormat

时间格式化字符

默认值:yyyy-mm-dd hh:mm:ss

resource $formatHandler

单元格样式

示例

  1. $excel = new \Vtiful\Kernel\Excel($config);
  2. $dateFile = $excel->fileName("free.xlsx")
  3. ->header(['date']);
  4. $dateFile->insertDate(1, 0, time(), 'mmm d yyyy hh:mm AM/PM');
  5. $textFile->output();

时间格式化字符示例

更多样式请参考 Excel 微软文档

  1. "mm/dd/yy"
  2. "mmm d yyyy"
  3. "d mmmm yyyy"
  4. "dd/mm/yyyy hh:mm AM/PM"