Sample 20 BGColor

01:54:07 Create new PhpWord object
01:54:07 Write to Word2007 format
01:54:07 Write to ODText format
01:54:07 Write to RTF format
01:54:07 Write to HTML format
01:54:07 Write to PDF format ... NOT DONE!
01:54:07 Write to EPub3 format
01:54:07 Done writing file(s)
01:54:07 Peak memory usage: 4 MB

 

Results: docx odt rtf html epub


<?php


include_once 'Sample_Header.php';

// New Word document
echo date('H:i:s'), ' Create new PhpWord object'EOL;
$phpWord = new PhpOffice\PhpWord\PhpWord();

// New section
$section $phpWord->addSection();

$section->addText(
    
'This is some text highlighted using fgColor (limited to 15 colors)',
    [
'fgColor' => PhpOffice\PhpWord\Style\Font::FGCOLOR_YELLOW]
);
$section->addText('This one uses bgColor and is using hex value (0xfbbb10)', ['bgColor' => 'fbbb10']);
$section->addText('Compatible with font colors', ['color' => '0000ff''bgColor' => 'fbbb10']);

// Save file
echo write($phpWordbasename(__FILE__'.php'), $writers);
if (!
CLI) {
    include_once 
'Sample_Footer.php';
}