CakeFest 2024: The Official CakePHP Conference

Vtiful\Kernel\Format::bold

(PECL xlswriter >= 1.2.1)

Vtiful\Kernel\Format::boldVtiful\Kernel\Format bold

説明

public Vtiful\Kernel\Format::bold(resource $handle)

Vtiful\Kernel\Format bold format

パラメータ

handle

xlsx file handle

戻り値

Resource

例1 example

<?php
$config
= [
'path' => './tests'
];

$excel = new \Vtiful\Kernel\Excel($config);

$fileObject = $excel->fileName('tutorial01.xlsx');
$fileHandle = $fileObject->getHandle();

$boldStyle = \Vtiful\Kernel\Format::bold($fileHandle);

$fileObject->header(['name', 'age'])
->
data([['viest', 21]])
->
setColumn('A:A', 200, $boldStyle)
->
output();
?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top