单元格插入链接

函数原型

  1. insertUrl(int $row, int $column, string $url[, resource $format])

int $row

单元格所在行

int $column

单元格所在列

string $url

链接地址

resource $format

链接样式

实例

  1. $excel = new \Vtiful\Kernel\Excel($config);
  2.  
  3. $urlFile = $excel->fileName("free.xlsx")
  4. ->header(['url']);
  5.  
  6. $fileHandle = $fileObject->getHandle();
  7.  
  8. $format = new \Vtiful\Kernel\Format($fileHandle);
  9. $urlStyle = $format->bold()
  10. ->underline(Format::UNDERLINE_SINGLE)
  11. ->toResource();
  12.  
  13. $urlFile->insertUrl(1, 0, 'https://github.com', $urlStyle);
  14.  
  15. $textFile->output();