addFormat()函數是PHP中的內置函數| Spreadsheet_Excel_Writer用於設置電子表格的格式。
用法:
Workbook::&addFormat( $properties = array() )
參數:該函數接受單個參數$properties,該參數接受數組值。為了設置各種格式,我們使用它們相應的函數,例如粗體字為setBold(),邊框為setBorder(),還有許多其他函數。
範例1:
<?php
require_once 'Spreadsheet/Excel/Writer.php';
// Add Workbook
$workbook = new Spreadsheet_Excel_Writer();
// Add Format to spreadsheet
$format_bold =& $workbook->addFormat();
// Set Bold Format
$format_bold->setBold();
// Add Worksheet to Sprerdsheet
$worksheet =& $workbook->addWorksheet();
$format_bold->setBorder(2);
// Write to Worksheet
$worksheet->write(0, 0, "Details of GeeksforGeeks
Contributors", $format_bold);
$worksheet->write(1, 0, "Author", $format_bold);
$worksheet->write(1, 1, "User Handle", $format_bold);
$worksheet->write(2, 0, "Sarthak");
$worksheet->write(2, 1, "sarthak_ishu11");
// Send .xlsx file to header
$workbook->send('test.xls');
// Close Workbook Object
$workbook->close();
?>
輸出:
範例2:
<?php
require_once 'Spreadsheet/Excel/Writer.php';
// Add Workbook
$workbook = new Spreadsheet_Excel_Writer();
// Add Format to spreadsheet
$format_border =& $workbook->addFormat();
// Add Worksheet to Sprerdsheet
$worksheet =& $workbook->addWorksheet();
// Set and Add Border Width
$format_border->setBorder(2);
// Set and Add Color to Border
$format_border->setBorderColor('red');
// Write to Worksheet
$worksheet->write(0, 0, "Details of GeeksforGeeks
Contributors", $format_bold);
$worksheet->write(1, 0, "Author", $format_border);
$worksheet->write(1, 1, "User Handle", $format_border);
$worksheet->write(2, 0, "Sarthak");
$worksheet->write(2, 1, "sarthak_ishu11");
// Send .xlsx file to header
$workbook->send('test.xls');
// Close Workbook Object
$workbook->close();
?>
輸出:
參考: https://pear.php.net/manual/en/package.fileformats.spreadsheet-excel-writer.intro-format.php
相關用法
- p5.js str()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP each()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP pos()用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP end()用法及代碼示例
- p5.js hex()用法及代碼示例
- PHP abs()用法及代碼示例
- p5.js tan()用法及代碼示例
- p5.js cos()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Spreadsheet_Excel_Writer | addFormat() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。